输入一个年份和月份输出该月有多少天(考虑闰年) 用switch
时间: 2023-10-26 21:04:58 浏览: 124
好的,以下是我给出的代码:
```c
#include <stdio.h>
int main()
{
int year, month, days;
printf("请输入年份和月份(用空格分隔):");
scanf("%d %d", &year, &month);
switch (month) {
case 2:
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
days = 29;
} else {
days = 28;
}
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
break;
default:
days = 31;
break;
}
printf("%d 年 %d 月共有 %d 天。\n", year, month, days);
return 0;
}
```
在这个程序中,我们首先通过 `scanf` 函数获取用户输入的年份和月份。然后,在 `switch` 语句中,我们根据月份的值来判断该月有多少天。对于 2 月,我们需要额外考虑闰年的情况,因此使用 if 语句进行判断。最后,我们将计算得到的天数输出到屏幕上。
希望这个程序能够解决你的问题!
阅读全文