生成一段代码,输入年份,如果他是闰年,则输出Ture,否则输出False
时间: 2023-04-03 10:05:22 浏览: 85
python 输入年份 如果是闰年输出True 否则输出False 示例
5星 · 资源好评率100%
好的,以下是代码:
```c
#include <stdio.h>
int main() {
int year;
scanf("%d", &year);
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("True");
} else {
printf("False");
}
return 0;
}
```
输入年份后,程序会判断该年份是否为闰年,如果是,则输出 True,否则输出 False。
阅读全文