用c语言判断闰年
时间: 2023-09-24 13:11:06 浏览: 96
可以使用以下的代码来判断一个年份是否是闰年:
```c
#include <stdio.h>
int main() {
int year;
printf("请输入一个年份:");
scanf("%d", &year);
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d年是闰年。\n", year);
} else {
printf("%d年不是闰年。\n", year);
}
return 0;
}
```
该程序首先输入一个年份,然后使用 if 语句判断该年份是否为闰年,最后输出结果。其中,判断闰年的方法是:
1. 能被4整除且不能被100整除的年份是闰年;
2. 能被400整除的年份也是闰年。
根据这个方法,程序可以正确地判断一个年份是否为闰年。
相关问题
c语言判断闰年判断闰年
在 C 语言中,判断闰年的标准通常基于格里高利历的规定。闰年有以下几个条件:
1. 能够被4整除的年份一般是闰年(如2004年、2020年);
2. 但是能被100整除的年份不是闰年(例如1900年就不是闰年);
3. 但是如果该年份同时能被400整除,则依然是闰年(比如2000年就是闰年,因为它既能被4整除又能被400整除)。
以下是判断闰年的简单 C 语言函数示例:
```c
#include <stdio.h>
int is_leap_year(int year) {
if (year % 4 == 0) {
if (year % 100 == 0) {
if (year % 400 == 0)
return 1; // 是闰年
else
return 0; // 不是闰年
} else {
return 1; // 是闰年
}
} else {
return 0; // 不是闰年
}
}
int main() {
int year;
printf("请输入一个年份:");
scanf("%d", &year);
if (is_leap_year(year))
printf("%d年是闰年\n", year);
else
printf("%d年不是闰年\n", year);
return 0;
}
```
c语言判断闰年pta
以下是C语言判断闰年的代码示例:
```c
#include <stdio.h>
int main() {
int n, year;
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%d", &year);
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("YES\n");
} else {
printf("NO\n");
}
}
return 0;
}
```
该代码通过输入测试组数n和n个年份y,判断每个年份y是否为闰年,若是则输出YES,否则输出NO。
阅读全文