求大佬指教,為啥我的運(yùn)行錯(cuò)誤
public class HelloWorld {
? ? public static void main(String[] args) {
? ? ? ??
? ? ? ? // 變量保存成績
? ? ? ? int score = 53;?
? ? ? ? // 變量保存加分次數(shù)
? ? ? ? int count = 0;
? ? ? ? //打印輸出加分前成績?
? ? ? ? ?System.out.println("加分前成績;"+score);?
? ? ? ? // 只要成績小于60,就循環(huán)執(zhí)行加分操作,并統(tǒng)計(jì)加分次數(shù)
? ? ? ? for(;score<60;score++;count++){
? ? ? ? ? ??
? ? ? ? }
? ? ? ? System.out.println("加分后成績;"+score);?
? ? ? ? System.out.println("加分"+count+"次");?
? ? }
}
2019-03-28
for(;score<60;score++,count++){
改成逗號隔開就好,這種自增放for里面也可以的,還更好把握自增時(shí)機(jī)