帮我写个输入月份输入季节的c语言程序用switch语句
时间: 2024-10-28 10:11:47 浏览: 124
C语言程序设计:第3章 C语言程序设计初步.ppt
当然可以帮你编写一个简单的 C 语言程序,使用 switch 语句来根据输入的月份判断季节。这里我们假设一年有四季,分别是春季(3月到5月),夏季(6月到8月),秋季(9月到11月)和冬季(12月到次年2月)。下面是程序示例:
```c
#include <stdio.h>
int main() {
int month;
printf("请输入月份(1-12): ");
scanf("%d", &month);
// Switch case 结构用于根据月份选择对应的季节
switch (month) {
case 1:
case 2:
case 3:
printf("当前季节是冬季.\n");
break;
case 4:
case 5:
printf("当前季节是春季.\n");
break;
case 6:
case 7:
case 8:
printf("当前季节是夏季.\n");
break;
case 9:
case 10:
case 11:
printf("当前季节是秋季.\n");
break;
default:
printf("输入的月份不正确,请确保在1到12之间.\n");
break;
}
return 0;
}
```
在这个程序里,`scanf()` 函数用来接收用户的输入,然后 `switch` 语句根据输入的月份值决定输出哪个季节。
阅读全文