这段代码里面的for语句总是报错 不知为何
public static void main(String[] args){
int score = 53;
int count = 0;
System.out.println(score);
for(count ;score<60;count++ ){
score++;
}
System.out.println(score);
}
public static void main(String[] args){
int score = 53;
int count = 0;
System.out.println(score);
for(count ;score<60;count++ ){
score++;
}
System.out.println(score);
}
2015-07-31
举报