麻烦大佬们帮忙看一下哪儿有问题,谢谢

P5737 【深基7.例3】闰年展示

hyx810913 @ 2022-08-27 23:25:11

#include <bits/stdc++.h>
using namespace std;
int main(){
    int n,m,a[10001],num=0;
    cin>>n>>m;
    for(int i=n;i<=m;i++){
        if(i%100==0){
            if(i%400==0){
                num++;
                a[num]=i;
            }
        }
        else{
            if(i%4==0){
                num++;
                a[num]=i; 
            }
        }
    }
    cout<<num<<endl;
    for(int i=0;i<num;i++){
        cout<<a[i]<<" ";
    }
    return 0;
}

by tommyfj @ 2022-08-27 23:33:13

@hyx810913

  for(int i=1;i<=num;i++){
        cout<<a[i]<<" ";
    }

by hyx810913 @ 2022-08-27 23:36:39

@tommyfj 谢谢,通过了


|