int i = 0;int score = 0;while(i <=100) { System.out.println(score);//在这里输出值是4950为什么? score = score + i; i++; }