Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
105057 |
伍长辉 |
能否被3和5整除 |
Python3 |
Compile Error |
0 MS |
0 KB |
72 |
2025-01-12 13:10:01 |
Tests(0/0):
Code:
a=int(input())
if a//3 and a//5
print('can')
else:
print('cannot')
Run Info:
File "Main.py", line 2
if a//3 and a//5
^
SyntaxError: invalid syntax