Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92763 | 余泽越 | 求三个数的最大值 | Python3 | Accepted | 35 MS | 3764 KB | 201 | 2024-10-06 13:53:55 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if b > c and b > d : print("max=",b,sep="") elif d > c and d > b : print("max=",d,sep="") else: print("max=",c,sep="")