Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92761 徐梓涵 求三个数的最大值 Python3 Accepted 37 MS 3768 KB 204 2024-10-06 13:50:43

Tests(1/1):


Code:

s=input().split() a=s[0] b=s[1] c=s[2] a=int(a) b=int(b) c=int(c) if a>b and a>c: print('max=',a , sep="") elif c>a and c>b: print('max=',c, sep='') else: print('max=',b, sep='')