用C语言输入任意年、月输出该月的天数。(switch和if)
时间: 2024-04-07 09:30:13 浏览: 85
从0开始练习c语言,扫雷,通讯录,任意年份的任意月份有多少天
好的,下面是用C语言输入任意年份和月份,然后输出该月的天数的代码,使用了switch和if语句:
```c
#include <stdio.h>
int main() {
int year, month;
printf("请输入年份和月份(例如:2022 5):");
scanf("%d %d", &year, &month);
int days;
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
days = 31;
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
break;
case 2:
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
days = 29;
else
days = 28;
break;
default:
printf("无效的月份!\n");
return 0;
}
printf("%d年%d月有%d天\n", year, month, days);
return 0;
}
```
这段代码会要求你输入一个年份和月份,然后根据输入的年份和月份使用switch和if语句来判断该月的天数。注意,这里对闰年的判断使用了if语句。你可以尝试运行这段代码,并查看输出结果。
阅读全文