Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121006 赵天瑜 求三个数的最大值 Python3 Accepted 39 MS 3768 KB 159 2025-06-03 20:57:19

Tests(1/1):


Code:

a,b,c=map(int,input().split()) if a>b and a>c: print("max="+str(a)) if b>a and b>c: print("max="+str(b)) if c>a and c>b: print("max="+str(c))