错哪了???

public class HelloWorld {

    public static void main(String[] args) {

       int age=25;

       String type;

       if (age>=60)

       type="老年 ";

       else if (age>=40);

       type="中年 ";

       else if (age>=18);

       type="少年 ";

       else 

       type ="童年 ";http://img.mukewang.com/5815ddb20001078806420202.jpg

     System .out.println(type);

    }

}


NMX
浏览 1035回答 1
1回答

望远

public static void main(String[] args) {        int age=25;        String type;        if (age>=60)        type="老年 ";        else if (age>=40)//多了分号,逻辑判断提前结束        type="中年 ";        else if (age>=18)//多了分号,逻辑判断提前结束        type="少年 ";        else         type ="童年 ";      System .out.println(type);     }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java