有沒有大神幫忙看看這個哪里錯了?else要說也沒錯呀 符號應(yīng)該也沒問題呀
package 加分;
import java.util.Scanner;
public class 加分試驗 {
?public static void main(String[] args) {
??Scanner input = new Scanner(System.in);
??System.out.print("請輸入考試成績信息:");
??int fens=input.nextInt();
??int cish=0;
??System.out.println("加分前成績"+fens);
??if(input.nextInt()<60);{??
???while(fens < 60) {
???fens++;
???cish++;
???}
???}else{
????System.out.println("不加分!");
??}
??
??
??System.out.println("加分后成績"+fens);
??System.out.println("共加了"+cish+"次!");
?}
}
2018-03-10
if ?后邊加了分號,if的判定條件應(yīng)該也不能那么寫