Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94800 | 周楚航 | 求三个数的最大值 | Python3 | Wrong Answer | 39 MS | 3772 KB | 184 | 2024-10-26 13:51:44 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if (b > c and b > d): print('max=',b) elif (c > b and c > d) : print('max=',c) else : print('max=',d)
------Input------
8 5 20
------Answer-----
max=20
------Your output-----
max= 20