大神给看看吧
打印输出写在了for循环里当然会一直输出,循环几次就会输出几次
int score =53; //变量保存加分次数; int count=0; System.out.println("加分前成绩:"+ score); while (score<60) { count++; score++; } System.out.println("加分后成绩:"+score); System.out.println("加了"+count+"次");