C语言编写一个程序,输出从公元1000年至2000年所有闰年的年号,每输出3个年号换一行。
时间: 2024-06-12 12:06:00 浏览: 96
输出1000到1999年之间所有的闰年
```
#include <stdio.h>
int main() {
int year, count = 0;
for (year = 1000; year <= 2000; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d ", year);
count++;
if (count == 3) {
printf("\n");
count = 0;
}
}
}
return 0;
}
```
阅读全文