用C语言输出2000年到2500年之间的闰年,并计算有多少年是闰年
时间: 2024-04-14 13:28:31 浏览: 184
VC版的判断2000年至2500年哪些年为闰年
4星 · 用户满意度95%
以下是用C语言编写的程序,用于输出2000年到2500年之间的闰年,并计算有多少年是闰年:
```c
#include <stdio.h>
int main() {
int startYear = 2000;
int endYear = 2500;
int count = 0;
printf("闰年列表:\n");
for (int year = startYear; year <= endYear; year++) {
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
printf("%d\n", year);
count++;
}
}
printf("总共有%d个闰年\n", count);
return 0;
}
```
这个程序会输出2000年到2500年之间的所有闰年,并计算有多少个闰年。希望对你有帮助!如果还有其他问题,请随时提问。
阅读全文