代码拉取完成,页面将自动刷新
import java.util.Scanner;
public class Demo4 {
public static void main(String[] args) {
// 4)、输入一个月份 ,判断月份属于哪一个季节 :春天:3,4,5、夏天 :6,7,8 ,秋天:9,10,11 冬天:12,1,2
Scanner input=new Scanner(System.in);
System.out.print("请输入月份:");
int month=input.nextInt();
if(month>=3&&month<=5) {
System.out.print("春天");
}
else if(month>=6&&month<=8) {
System.out.print("夏天");
}
else if(month>=9&&month<=11) {
System.out.print("秋天");
}
else if((month>=1&&month<=2)||(month==12)) {
System.out.print("冬天");
}
else {
System.out.println("你输入的月份不合法!请重新输入!");
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。