闰年的定义:
能被4整除,但不能被100整除的是闰年
能被400整除是闰年
#include<stdio.h> int main() { int y = 0; int count = 0; for (y = 1000; y <= 2000; y++) { if (((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0)) { printf("%d ", y); count++; } } //打印闰年的个数 printf("\ncount = %d\n", count); return 0; }