如何跳出循環(huán)?
public class HelloWorld {
? ? public static void main(String[] args) {
? ? ? ??
? ? ??
? ? ? ? int score = 53;?
? ? ? ??
? ??
? ? ? ? int count = 0;
? ? ??
? ? ? ? ?System.out.println("加分前成績:"+score);
? ? ? ?
? ? ? ??
? ? ?
? ? ? ? for(int i=score,j=0;i<=60;i++,j++){
? ? ? ??
? ? ? ??
? ?
? ? ? System.out.println("加分后的成績:"+i);
? ? ? System.out.println("共加了"+j+"次!");
}
? ??
}
怎么讓它只輸出一次呢?
2014-11-11
如果需要返回值則使用return,若不需要就加break
2014-11-11
break;? 遇到break;直接跳出
2014-11-11
加return
2014-11-11
加上break就當(dāng)跳出當(dāng)前循環(huán)