用JAVA语言写程序根据输入1~12之间的数值判断春夏秋冬是哪个细节定义3~5月为春季 6~8月为夏季 9~11月为秋季 12月~2月为冬季
时间: 2023-04-09 08:00:59 浏览: 110
Java判断用户输入月份的季节
这个问题可以回答。以下是JAVA代码:
```
import java.util.Scanner;
public class Season {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入1~12之间的数值:");
int month = input.nextInt();
String season;
if (month >= 3 && month <= 5) {
season = "春季";
} else if (month >= 6 && month <= 8) {
season = "夏季";
} else if (month >= 9 && month <= 11) {
season = "秋季";
} else {
season = "冬季";
}
System.out.println(month + "月是" + season);
}
}
```
这个程序可以根据输入的月份判断是春夏秋冬中的哪一个季节。
阅读全文