c语言计算某年某月有多少天
时间: 2023-10-14 19:06:35 浏览: 187
可以使用以下代码来计算某年某月有多少天:
```c
#include <stdio.h>
int main() {
int year, month, days;
printf("请输入年份:");
scanf("%d", &year);
printf("请输入月份:");
scanf("%d", &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 1;
}
printf("%d年%d月共有%d天。\n", year, month, days);
return 0;
}
```
这段代码通过输入年份和月份,使用 switch 语句来判断每个月有多少天。其中,2月的天数需要根据是否为闰年来判断。如果是闰年,2月有29天;否则,2月有28天。
阅读全文