怎么錯啦,找不到?。。。。?/h1>
System.out.println("加分前成績"+score);
? ? ? ? if(score<60){
? ? ? ? score++;
? ? ? ? count++;
? ? ? ? }
? ? ? ? System.out.println("加分后成績"+score);
? ? ? ? System.out.println("共加了"+count+"次!");
System.out.println("加分前成績"+score);
? ? ? ? if(score<60){
? ? ? ? score++;
? ? ? ? count++;
? ? ? ? }
? ? ? ? System.out.println("加分后成績"+score);
? ? ? ? System.out.println("共加了"+count+"次!");
2016-05-15
用if不是循環(huán),是條件判斷。
你只判斷了一次!判斷<60,然后就++了一次。
可以用for,while