Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129182 叶航帅 求三个数的最大值 Python3 Accepted 54 MS 3760 KB 456 2025-08-22 15:10:24

Tests(1/1):


Code:

a, b, c = map(int, input().split()) if a > b and a > c: max_num = a elif b > a and b > c: max_num = b else: max_num = c print("max={}".format(max_num)) # print("max={}".format( max(map(int,input().split())) )) # # a,b,c = input().split() # a = int(a) # b = int(b) # c = int(c) # # t = 0 # if a > b: # t = a # else: # t = b # if c > t: # t = c # # print("max={}".format(t))