帮忙看一下作业,谢谢
// 变量保存成绩
int score = 53;
// 变量保存加分次数
int count = 0;
System.out.println("加分前成绩:"+score);
//打印输出加分前成绩
while(score<60){
score++;
count++;
}
// 只要成绩小于60,就循环执行加分操作,并统计加分次数
System.out.println("加分后成绩:"+score);
System.out.println("共加了"+count+"次");
如果while(score<=60)时,为什么最终输出的成绩是61和8次呢?