Problem1343--自定义函数-输出区间中的闰年

1343: 自定义函数-输出区间中的闰年

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 690  Solved: 461
[Status] [Submit] [Creator:]

Description

输入两个数x,y,输出x~y的区间(含x和y)中闰年个数,并在下一行输出所有闰年年份数字,使用空格隔开。 (0<=x,y<=3000)
自定义函数run(n) ,作用是判断年份n是否是闰年,如果是,返回1,否则返回0

Sample Input Copy

1889 1920

Sample Output Copy

7
1892 1896 1904 1908 1912 1916 1920

Source/Category

 基础A