编写一个C语言程序输入年份和月份,求该月的天数
时间: 2023-05-20 07:02:47 浏览: 195
C语言学习 输出每个月的天数
以下是一个简单的C语言程序,输入年份和月份,求该月的天数:
```c
#include <stdio.h>
int main() {
int year, month, days;
printf("请输入年份和月份:\n");
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 1;
}
printf("%d年%d月有%d天。\n", year, month, days);
return 0;
}
```
该程序使用了 switch 语句来根据月份计算天数,对于闰年的判断使用了 if 语句。
阅读全文