JAVA算法分析
public class HelloWorld {
public static void main(String[] args) {
// 变量保存成绩
int score = 53;
// 变量保存加分次数
int count = 0;
System.out.println("加分前成绩"+score);
while(score<=60){
score=score+1;
count++;
}
System.out.println("加分后成绩:"+score);
System.out.println("共加了"+count+"次!");
为什么输出的是最后成绩61分,加了8次,而不是最后成绩60分,加了7次?