编写一段基于c语言,求出1900-2000年中的所有闰年,每输出3个年号换一行
时间: 2023-05-27 13:04:56 浏览: 291
C语言判断1000-2000年当中的闰年-源代码
#include <stdio.h>
int main() {
int year;
int count = 0; // 计数器,每输出3个年号换一行
printf("1900-2000年中的所有闰年为:\n");
for (year = 1900; 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;
}
阅读全文