输入 x , y x,y x,y,输出 [ x , y ] [x,y] [x,y] 区间中闰年个数,并在下一行输出所有闰年年份数字,使用空格隔开。
输入两个正整数 x , y x,y x,y,以空格隔开。
第一行输出一个正整数,表示 [ x , y ] [x,y] [x,y] 区间中闰年个数。
第二行输出若干个正整数,按照年份单调递增的顺序输出所有闰年年份数字。
1989 2001
3
1992 1996 2000
数据保证, 1582 ≤ x < y ≤ 3000 1582\le x < y \le 3000 1582≤x<y≤3000。
def runnain(number):
if number%4==0 and number%100!=0:
return True
else:
if number%400==0:
return True
return False
if __name__=="__main__":
anss=[]
begin,end=map(int,input().split())
for item in range(begin,end+1):
if runnain(item):
anss.append(item)
pass
pass
length=len(anss)
print(length)
for item in range(length):
if item==length-1:
print(anss[item])
pass
else:
print(anss[item],end=' ')
函数和结构体的题单,函数的运用都很基本,虽然是入门题单,但是太入门的就不发了