Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97202 | 吴梓玄 | 比较三个数大小II | Python3 | Compile Error | 0 MS | 0 KB | 245 | 2024-11-10 19:14:57 |
a,b,c=int(input().split()) if a>b: if b>c: print(c,b,a) else: if a>c: print(b,c,a) else: print(b,a,c) else: if a>c: print(c,a,b) else: if b>c: print(a,c,b) else: print(a,b,c)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)