Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94092 | 徐盛熠 | 求三个数的最大值 | Python3 | Wrong Answer | 38 MS | 3768 KB | 232 | 2024-10-19 19:00:34 |
c=input().split(",") a=c[0] a=int(a) b=c[1] x=c[2] x=int(x) b=int(b) if b>a and b>x : print("max=",b,sep="") else: if a>x : print("max=",a,sep="") else : print("max=",x,sep="")
------Input------
8 5 20
------Answer-----
max=20
------Your output-----