Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96112 | 赵乘浩 | 08比较三个数的大小 | Python3 | Compile Error | 0 MS | 0 KB | 162 | 2024-11-03 09:11:27 |
a,b,c = map(int,input().split()) for i in range(): if a>b and a>c: print("a") if b>a and b>c: print("b") if c>a and c>b: print("c")
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)