关于自加运算
public static void main(String[] args) {
int score = 53;
int count = 0;
System.out.println(" 加分前成绩"+score);
while(score<60){
score = score++;
count++;
}
System.out.println(" 加分后成绩"+score);
System.out.println("共加了"+count+"次!");
}为什么用score++不能跳出循环?而改为score+=1就可以?