输出21世纪中截止某个年份以来的所有闰年年份。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。
时间: 2023-04-29 08:04:17 浏览: 217
2000年以来的闰年有: 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.
相关问题
用c语言输出21世纪中截止某个年份以来的所有闰年年份。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除
在C语言中,我们可以编写一个程序来输出从2001年以来的所有闰年。以下是通过循环判断并打印闰年的示例代码:
```c
#include <stdio.h>
int is_leap_year(int year) {
if (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)) {
return 1;
}
else {
return 0;
}
}
int main() {
int current_year = 2001; // 初始年份,可以根据需求调整
printf("21世纪(2001年至今)的闰年有:\n");
while (current_year <= 2100) { // 可以设定更精确的截止年份,比如2199或其他年份
if (is_leap_year(current_year)) {
printf("%d ", current_year);
}
current_year++;
}
printf("\n");
return 0;
}
```
这个程序首先定义了一个辅助函数`is_leap_year()`用于检查给定年份是否为闰年。然后在`main()`函数里,我们从2001年开始,逐年检查直到指定的年份,并打印出符合条件的闰年。
用c语言输出21世纪中截止某个年份以来的所有闰年年份。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。
以下是用C语言输出21世纪中截止某个年份以来的所有闰年年份的代码:
```c
#include <stdio.h>
int main() {
int year;
int count = 0;
scanf("%d", &year);
if (year < 2001 || year > 2100) {
printf("Invalid year!");
return 0;
}
for (int i = 2001; i <= year; i++) {
if ((i % 4 == 0 && i % 100 != 0) || i % 400 == 0) {
printf("%d\n", i);
count++;
}
}
if (count == 0) {
printf("None");
}
return 0;
}
```
阅读全文