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

Tests(0/0):


Code:

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


Run Info:

  File "Main.py", line 4
    print(f"max={a}")
                   ^
SyntaxError: invalid syntax