Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93326 王晨鑫 求三个数的最大值 Python3 Accepted 38 MS 3772 KB 263 2024-10-13 11:46:47

Tests(1/1):


Code:

q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) b=int(b) c=int(c) if a>b: if a<c: print("max=",c,sep="") else: print("max=",a,sep="") else: if b>c: print("max=",b,sep="") else: print("max=",c,sep="")