请编写一个switch语句来打印这个月有多少天(考虑闰年)。输入一个年份和月份,然后使用switch语句编程。
时间: 2024-05-07 19:18:39 浏览: 96
以下是使用switch语句的示例代码:
```c
#include <stdio.h>
int main() {
int year, month, days;
printf("请输入年份和月份(例如2022 2):");
scanf("%d %d", &year, &month);
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语句根据月份计算该月有多少天。在switch语句中,我们首先列出了每个具有31天的月份,然后是每个具有30天的月份。对于二月份,我们使用了条件语句来判断是否是闰年,并分别设置了29和28天。如果用户输入了一个无效的月份,程序将输出错误消息。
阅读全文