用c++写一个程序判断输入年份是否为闰年
时间: 2023-05-22 18:06:07 浏览: 356
判断是否闰年的程序
以下是用 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;
}
```
只需要输入一个年份,程序就会输出该年份是否是闰年。如果是闰年,会输出“X年是闰年”;如果不是闰年,会输出“X年不是闰年”,其中 X 表示用户输入的年份。
阅读全文