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

为啥我错了

public class HelloWorld {

    public static void main(String[] args) {

int age=25;

if(age>60){

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

} else if (age>40){

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

    }

      else if (age>18){

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

    } else {

        System.out.println("童年")

    }

}

}


提问者:如意哥哥 2020-02-15 16:49

个回答

  • odk
    2020-02-18 11:27:17

    println拼写错误 童年最后没有分号  少年那行out后面应该是.

  • weixin_慕先生3542764
    2020-02-15 16:54:33

    第五行 println写成peintln  第十行out后面是.写成,第十二行没写;