| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129047 | 叶航帅 | 求三个数的最大值 | Python3 | Compile Error | 0 MS | 0 KB | 170 | 2025-08-21 16:23:46 |
a, b, c = map(int, input().split()) if a > b and a > c: max_num = a elif b > a and b > c: max_num = b else: max_num = c print(f"max={max_num}")
File "Main.py", line 10
print(f"max={max_num}")
^
SyntaxError: invalid syntax