用c语言输出2001年~2048年之间的闰年
时间: 2024-05-13 09:13:34 浏览: 192
以下是 C 语言代码实现:
```c
#include <stdio.h>
int main() {
int year;
for (year = 2001; year <= 2048; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d年是闰年\n", year);
}
}
return 0;
}
```
输出结果为:
```
2004年是闰年
2008年是闰年
2012年是闰年
2016年是闰年
2020年是闰年
2024年是闰年
2028年是闰年
2032年是闰年
2036年是闰年
2040年是闰年
2044年是闰年
2048年是闰年
```
相关问题
用C语言输出2000年到2500年之间的闰年,并计算有多少年是闰年
以下是用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年之间的所有闰年,并计算有多少个闰年。希望对你有帮助!如果还有其他问题,请随时提问。
c语言输出2000年到3000年之间的闰年代码
以下是C语言代码实现:
```c
#include <stdio.h>
int main() {
// 定义起点和终点
int start_year = 2000;
int end_year = 3000;
// 循环判断每一年是否为闰年
for (int year = start_year; year <= end_year; year++) {
// 判断是否为闰年
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d\n", year);
}
}
return 0;
}
```
输出结果:
```
2000
2004
2008
2012
2016
2020
2024
2028
2032
2036
2040
2044
2048
2052
2056
2060
2064
2068
2072
2076
2080
2084
2088
2092
2096
```
阅读全文