用c语言编写一个程序,根据键盘输入的年,月,输出该年月的天数。
时间: 2023-03-20 17:00:34 浏览: 295
以下是一个用 C 语言编写的程序,可以根据键盘输入的年份和月份输出该年月的天数:
```c
#include <stdio.h>
int main()
{
int year, month, days;
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 % 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;
}
```
程序中,首先提示用户输入年份和月份,然后使用 `scanf` 函数从键盘读取输入的年份和月份,保存到变量 `year` 和 `month` 中。接着,根据月份的不同,使用 `switch` 语句判断该月份的天数,并保存到变量 `days` 中。如果输入的月份不在 1 到 12 的范围内,则输出错误信息并结束程序。最后,使用 `printf` 函数输出该年月的天数。
阅读全文