求大神!!!
public static void main(String [] args){
int score=53;
int count=0;
System.out.println("加分前的成绩"+score);
for (count=0;score<60;count++){
count=count+1;
score=score+1;
}
System.out.println("加分后的成绩"+score);
System.out.println("共加了"+count+"次");
}
}
这代码哪里有问题???为什么输出的次数是14,分数正确。