else if(month==6||month++7||month++8)
这个不对吧 你看一下。
import java.util.Scanner;
class Season
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);//控制台输入
System.out.println("请输入月份");
int month=sc.nextInt();
if(month==3||month==4||month==5)
System.out.println(month+"月是春季");
else if(month==6||month==7||month==8)
System.out.println(month+"月是夏季");
else if(month==9||month==10||month==11)
System.out.println(month+"月是秋季");
else if(month==12||month==1||month==2)
System.out.println(month+"月是冬季");
}
}
else if(month==6||month++7||month++8)
System.out.println(month+"月是夏季");
=========================================
else if(month==6||month==7||month==8)
System.out.println(month+"月是夏季");
看代码都看不懂,还写什么呢,我说话很直的
month++7||month++8这里错了
System.out.println(month+"月是春季");这些括起来