Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113959 杨嘉陆 求三个数的最大值 Python3 Compile Error 0 MS 0 KB 169 2025-03-17 21:31:26

Tests(0/0):


Code:

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


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)