這里哪錯了?
int score = 53;
???????
??????? // 變量保存加分次數(shù)
??????? int count = 0;
??????? System.out.println("加分前成績:"+score);
??????? //打印輸出加分前成績
?????????
?????? for(;score<=60;score++)
??????? {count+=1;}
??????? System.out.println("加分后成績:"+score);
??????? System.out.println("共加了"+count"次!");
2018-05-31
我會了