运用C语言编写一个程序,输入一个年份,判断是否是闰年
时间: 2024-11-03 09:12:48 浏览: 59
在C语言中,我们可以编写一个简单的函数来判断一个给定的年份是否是闰年。闰年的规则是:如果一个年份能被4整除但不能被100整除,或者它能被400整除,那么这个年份就是闰年。以下是实现这个功能的代码:
```c
#include <stdio.h>
// 判断是否是闰年的函数
int is_leap_year(int year) {
if (year % 4 == 0) {
if (year % 100 == 0) {
// 如果能被400整除,则是闰年
return year % 400 == 0;
} else {
// 否则,只要不是世纪年,就是闰年
return 1;
}
} else {
// 如果不能被4整除,直接返回0
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语言编写一个程序,输入一个年份,判断是否是闰年
在C语言中,我们可以编写一个简单的函数来判断一个年份是否是闰年。根据规则,闰年的条件是能被4整除,但是不能被100整除;除非它也能被400整除。下面是一个简单的程序示例:
```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语言编写一个程序,根据输入的年份判断是否是闰年。 是闰年。/不是闰年。
以下是用C语言编写的判断闰年的程序:
```c
#include <stdio.h>
void leap_year_judge(int year) // 判断闰年函数
{
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d年是闰年", year);
} else {
printf("%d年不是闰年", year);
}
}
int main()
{
int year = 0;
printf("请输入需要判断的年份:");
scanf("%d", &year);
leap_year_judge(year);
return 0;
}
```
用户输入需要判断的年份,程序会调用判断闰年的函数,根据闰年的定义判断该年份是否为闰年,并输出结果。
阅读全文