C语言定义一个名为leap函数接受一个年份判断是否为闰年若为闰年则返回1 不是则返回零,在主函数中输入一个整数年份调用该函数输出是否为闰年
时间: 2023-12-03 10:43:15 浏览: 133
哈工大C语言实验题.pdf
以下是使用C语言实现判断闰年的代码:
```c
#include <stdio.h>
int leap(int year) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
return 1;
} else {
return 0;
}
}
int main() {
int year;
printf("请输入一个年份:");
scanf("%d", &year);
if (leap(year)) {
printf("%d年是闰年\n", year);
} else {
printf("%d年不是闰年\n", year);
}
return 0;
}
```
函数`leap()`接收一个年份`year`,通过对年份进行判断,若为闰年则返回1,否则返回0。主函数中输入一个整数年份,调用`leap()`函数判断是否为闰年,并输出相应的信息。
阅读全文