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

哪里不对啦?

package com.imooc;


public class HelloWorld {

     public static void main(String[] args){

        int score=98;

        if(score>=60);{

        System.out.println("you are the best.");

        }else{

        System.out.println("Go to hell.");

        }

     }

}       


提问者:FarmLake 2016-06-20 13:15

个回答

  • Rebirth0123
    2016-06-20 13:37:55

    if(score>=60) 这里不用加分号