Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94094 徐盛熠 求三个数的最大值 Python3 Accepted 33 MS 3768 KB 215 2024-10-19 19:01:49

Tests(1/1):


Code:

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="")