木子宁 @ 2020-02-26 19:44:44
测试数据有问题吧,1994怎么可能是闰年?
by dingcx @ 2020-02-26 19:48:48
样例有问题,数据没问题
by Tino2023 @ 2020-03-06 14:26:32
#include<iostream>
using namespace std;
int main(){
int count=0;
int x,y;
cin >> x >> y;
int len=y-x;
int a[len];
for(int i=x;i<=y;i++){
if(i%4==0&&i%100!=0||i%400==0){
a[count++]=i;
}
}
cout << count << endl;
for(int i=0;i<count;i++){
cout << a[i] << " ";
}
}
by Cheney__22 @ 2021-11-21 14:29:55
可能是打错了吧
应该是1992年是闰年
现在已经改回来了