public static void main(String [] args){
int score=53;
int count=0;
System.out.println("加分前的成绩"+score);
for (count=0;score<60;count++){
count=count+1;
score=score+1;
}
System.out.println("加分后的成绩"+score);
System.out.println("共加了"+count+"次");
}
}
这代码哪里有问题???为什么输出的次数是14,分数正确。
你把 //count=count+1;这行代码删掉,你上面for循环里就有count++了,这样相当于count在每个循环里加了两次。