Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96111 赵乘浩 08比较三个数的大小 Python3 Compile Error 0 MS 0 KB 164 2024-11-03 09:09:49

Tests(0/0):


Code:

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")


Run Info:

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