Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115775 冯潇阳 求三个数的最大值 Python3 Wrong Answer 36 MS 3780 KB 156 2025-04-04 11:18:10

Tests(0/1):


Code:

a,b,c=input().split() a=int(a) b=int(b) c=int(c) a!=b,b!=c if a>b>c: print("max=",a) elif b>a>c: print("max=",b) else: print("max=",c)


Run Info:

------Input------
8 5 20
------Answer-----
max=20
------Your output-----
max= 20