哪里不對啦?
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.");
? ? ? ? }
? ? ?}
} ? ? ??
2016-06-20
if(score>=60) 這里不用加分號