为什么加分次数还是1
我理解的的意思; 但是你写的不对;应该这样写,把这个和你自己写的对比一下就知道哪里有问题了
package hello;
public class tezt03 {
public static void main(String[] args) {
int score=53;
int count=0;
System.out.println("加分前的成绩"+score);
if(score>=60){
System.out.println("加分后的成绩"+score);
System.out.println("加分次数"+count);
}
else{
do{
score++;
count++;
}
while(score<60);
System.out.println("加分后的分数"+score);
System.out.println("加分次数"+count);
}
}
}
用循环去做啊,if只是判断一次而已 在if的外面套层循环