问答详情
源自:4-3 Java条件语句之多重 if

为什么第十行还要加个if才能运行

public class HelloWorld {

    public static void main(String[] args) {

int age=25;

if (age>60){

        System.out.println("老年");

}else if (40<age){

        System.out.println("中年");

}else if (18<age){

        System.out.println("少年");

}else if(age<18){

        System.out.println("童年");

}

    


提问者:鹿鸣00 2019-07-20 16:00

个回答

  • qq_慕仰6301087
    2019-07-20 16:11:22
    已采纳

    因为你第十行带条件 把条件删除就不用打if了

    第十行应该是else{

    }