請問我的循環(huán)為什么只執(zhí)行了一次就輸出了
? if(score<60) {
? ? ? ? ? ?score++;
? ? ? ? ? ?count++;
? ? ? ? ? ?System.out.println("加分后的成績"+score);
? ? ? ? ? ?System.out.println("共加了"+count+"次!");
? ? ? ? ? ?
? ? ? ?}else{
? ? ? ? ? ?System.out.println("加分后的成績"+score);
? ? ? ? ? ?System.out.println("共加了"+count+"次!");
? ? ? ?}
? ? ? ??
2015-11-04
循環(huán)語句 有for 和while ?請問你的循環(huán)在哪里.....