Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92760 | 徐梓涵 | 求三个数的最大值 | Python3 | Wrong Answer | 40 MS | 3752 KB | 207 | 2024-10-06 13:50:12 |
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='')
------Input------
8 5 20
------Answer-----
max=20
------Your output-----