Commit e0a29899 by BellCodeEditor

auto save

parent 7e3a2ff3
Showing with 20 additions and 0 deletions
n=18
if n%3:
print("@",end="#")
else:
print(1,end="#")
if n%5:
print("@")
else:
print(1)
a=input("输入年份:")
if int(a)%400==0:
print("超级闰年")
elif int(a)%100==0:
print("普通闰年")
elif int(a)%4==0:
print("最普通闰年")
else:
print("不是闰年")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment