Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129203 曹云翊 求三个数的最大值 Python3 Accepted 45 MS 3760 KB 180 2025-08-22 19:01:01

Tests(1/1):


Code:

a,b,c = input().split() a = int(a) b = int(b) c = int(c) if a>b and a>c: print('max='+str(a)) elif b>a and b>c: print('max='+str(b)) else: print('max='+str(c))