怎么判斷三個整數是否相等?
a, b, c = map(int, input().split()) 1、輸入一個數字直接 m = int(input()) 2、輸入兩個數字就是 m, n = map(int, input().split()) 3、三個及三個以上就和兩個的類似: a, b, c = map(int, input().split()) a, b, c, d = map(int, input().split())
怎么判斷三個整數是否相等?
a, b, c = map(int, input().split()) 1、輸入一個數字直接 m = int(input()) 2、輸入兩個數字就是 m, n = map(int, input().split()) 3、三個及三個以上就和兩個的類似: a, b, c = map(int, input().split()) a, b, c, d = map(int, input().split())