- int month = 9;
- if(month<1 || month>12)
- System.out.println(month+"月没有对应的季节");
- else if(month>=3 && month<=5)
- System.out.println(month+"月是春季");
- else if(month>=6 && month<=8)
- System.out.println(month+"月是夏季");
- else if(month>=9 && month<=11)
- System.out.println(month+"月是秋季");
- else
- System.out.println(month+"月是冬季");
复制代码
显示月份
&&是不是有点问题 是不是应该把&&换成&
|