我想知道FOR后面有()了后面加这个{}什么意思,加这个之后COUNT就会因为SCORE到60之后会停止了么?我错哪儿了?为什么不能运行
int score = 53;
int count = 0;
System.out.println("加分前的成绩:"+score);
for(score<60;score++){
count++;
}
System.out.println("加分后成绩:"+score);
System.out.println("共加了"+count+"次!");