Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92620 | 谭景年 | 11整数的除法 | Python3 | Compile Error | 0 MS | 0 KB | 116 | 2024-10-05 19:51:49 |
s=input().split() a=float(s[0]) b=float(s[1]) if a%b=0: print(a/b) else: print(a//b) print(a%b)
File "Main.py", line 4 if a%b=0: ^ SyntaxError: invalid syntax