P5737 【深基7.例3】闰年展示(python3实现)

【深基7.例3】闰年展示 - 洛谷
"""

P5737 【深基7.例3】闰年展示(python3实现)
https://www.luogu.com.cn/problem/P5737

"""

ans=0

a,b=map(int,input().split() )

for i in range(a,b+1):

if i%400==0 or i%4==0 and i%100 !=0:
ans+=1

print(ans)

for i in range(a,b+1):

if i%400==0 or i%4==0 and i%100 !=0:
print(i,end=" ")

P1303 A*B Problem(python3实现)https://blog.csdn.net/dllglvzhenfeng/article/details/122710997
P

P5737 【深基7.例3】闰年展示(python3实现)最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/16724.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>