Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113957 | 杨嘉陆 | 求三个数的最大值 | Python3 | Compile Error | 0 MS | 0 KB | 169 | 2025-03-17 21:13:46 |
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)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)