问答详情
源自:4-2 Java条件语句之 if...else

为什么在eclipse里面else这行写着错误

package hello;


public class hello {

    public static void main(String[] args) {

int age=25;

if(age>=18);

{System.out.println("成年");

}else{

System.out.println("未成年");

}

        

        

        

        

        

        

        

}

}


提问者:慕娘1255311 2017-08-27 16:33

个回答

  • 精慕门8146574
    2017-08-27 16:38:00
    已采纳

    你把if括号后面的双引号去掉就行

  • 精慕门8146574
    2017-08-27 16:39:36

    package hello;


    public class hello {

        public static void main(String[] args) {

    int age=25;

    if(age>=18)

    {System.out.println("成年");

    }else{

    System.out.println("未成年");

    }