判断某年某月有多少天,要求:输入一个年份和月份,输出该月有多少天。提示:闰年的时候2月份多一天。要求使用switch语句实现。
时间: 2023-05-23 13:03:54 浏览: 86
好的,我可以回答这个问题。以下是实现代码:
```c
#include <stdio.h>
int main() {
int year, month, days = 0;
printf("请输入年份和月份:");
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 % 400 == 0 || (year % 4 == 0 && year % 100 != 0)) {
days = 29;
} else {
days = 28;
}
break;
default: printf("非法月份!\n"); return 0;
}
printf("%d年%d月有%d天。\n", year, month, days);
return 0;
}
```
输入年份和月份后,根据月份判断天数,闰年的情况特判处理。
阅读全文