int i = 0;//打印闰年

int count=0;//总共有多少年

for (i = 1000; i <= 2000; i++)

{

if (i % 4 == 0 && i % 100 != 0)//(i%4==0 && i%100!=0或者i%400==0)?

{

 printf("%d ", i);

 count++;

}

else if (i % 400 == 0)

{

 printf("%d ", i);

 count++;

}

}

     printf("%d ", count);




int i = 0;//打印闰年

int count=0;//总共有多少年

for (i = 1000; i <= 2000; i++)

{

if(((i%4==0) && (i%100!=0))||( i%400==0))

{

 printf("%d ", i);

 count++;

}

 

}

     printf("%d ", count);