Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114094 江屹山 求三个数的最大值 Python3 Compile Error 0 MS 0 KB 144 2025-03-20 20:11:16

Tests(0/0):


Code:

def find_max(a, b, c): return max(a, b, c) a=int(input()) b=int(input()) c=int(input()) print(f"最大值是: {find_max(a, b, c)}")


Run Info:

  File "Main.py", line 7
    print(f"\u6700\u5927\u503c\u662f: {find_max(a, b, c)}")
                                     ^
SyntaxError: invalid syntax