Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
116767 |
杨嘉陆 |
08判断是否为闰年 |
Python3 |
Compile Error |
0 MS |
0 KB |
84 |
2025-04-12 14:03:45 |
Tests(0/0):
Code:
a=int(input())
if a%4==0:
if a%400=0:
print(a,"Yes")
else:
print(a,"No")
Run Info:
File "Main.py", line 3
if a%400=0:
^
SyntaxError: invalid syntax