编写一个判断闰年的c语言程序
时间: 2023-04-07 18:01:40 浏览: 151
以下是一个判断闰年的C语言程序:
```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;
}
```
该程序通过判断年份是否能被4整除且不能被100整除,或者能被400整除来判断是否为闰年。
相关问题
用C语言编写一个判断闰年的程序
### 回答1:
以下是用C语言编写判断闰年的程序:
```c
#include <stdio.h>
int main() {
int year;
printf("请输入一个年份:\n");
scanf("%d", &year);
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d是闰年\n", year);
} else {
printf("%d不是闰年\n", year);
}
return 0;
}
```
程序中,首先使用`scanf`函数获取用户输入的年份。接着使用`if`语句对年份进行判断,如果年份能被4整除但不能被100整除,或者能被400整除,则判断为闰年;否则判断为非闰年。最后使用`printf`函数输出结果。
### 回答2:
```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;
}
```
以上是一个简单的判断闰年的C语言程序。首先,程序会要求用户输入一个年份。然后,通过判断年份是否能被4整除且不能被100整除,或者能被400整除,来确定该年份是否为闰年。最后,程序会输出判断的结果。如果该年份是闰年,则输出“X年是闰年。”,否则输出“X年不是闰年。”,其中X是输入的年份。
### 回答3:
下面是一个用C语言编写的判断闰年的程序:
```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;
}
```
该程序首先要求用户输入一个年份,然后通过以下判断条件来确定是否为闰年:
1. 如果年份能够整除4且不能整除100,或者能够整除400,那么该年份就是闰年。
2. 否则,该年份就不是闰年。
最后,根据判断结果,程序会打印出相应的提示信息。
编写一个程序判断是否为闰年C语言
当年份能被4整除但不能被100整除时,该年份为闰年;
当年份能被400整除时,该年份为闰年。
以下是一个判断是否为闰年的C语言程序示例:
```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;
}
```
这个程序会提示用户输入一个年份,然后判断该年份是否为闰年,并输出相应的结果。
阅读全文