输入年和月份,输出该年该月份的天数C语言
时间: 2024-04-29 16:24:37 浏览: 125
c语言输入年月日,输出这是一年中的第几天
好的,这是一个计算月份天数的问题,可以用 C 语言编写一个函数来实现。代码如下:
```
#include <stdio.h>
int getDaysOfMonth(int year, int month) {
int days = 0;
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("Invalid month\n");
break;
}
return days;
}
int main() {
int year, month;
printf("请输入年份和月份:\n");
scanf("%d%d", &year, &month);
int days = getDaysOfMonth(year, month);
printf("%d 年 %d 月份的天数为 %d\n", year, month, days);
return 0;
}
```
输入年份和月份,就可以计算出该年该月份的天数,例如:
输入:2000 2
输出:2000 年 2 月份的天数为 29
阅读全文