Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93540 | 胡玄善 | 求三个数的最大值 | Python3 | Wrong Answer | 35 MS | 3764 KB | 192 | 2024-10-17 19:54:23 |
s=input().split(",") a=int(s[0]) b=int(s[1]) c=int(s[2]) if a>b>c or a>c>b: print("max=",a,sep="") elif b>a>c or b>c>a: print("max=",b,sep="") else: print("max=",c,sep="")
------Input------
8 5 20
------Answer-----
max=20
------Your output-----