Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129045 叶航帅 求三个数的最大值 Python3 Compile Error 0 MS 0 KB 225 2025-08-21 16:22:24

Tests(0/0):


Code:

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


Run Info:

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