運行后沒反應(yīng)啊,哪里錯了
public class HelloWorld {
? ? public static void main(String[] args) {
? ? ? ? int score = 53;?
? ? ? ? int count = 0;
? ? ? ? System.out.println("加分前成績:"+score);
? ? ? ? score++;
? ? ? ? count++;
? ? ? ? while(score<=60){
? ? ? ? ? ? System.out.println("加分后成績:"+score);
? ? ? ? ? ? System.out.println("共加了"+count+"次");
? ? ? ?} ? ?
? ? }
}
2014-12-17
代碼死循環(huán)
2014-12-18
就像樓上說的一樣,累加過程也要寫進(jìn)循環(huán)里,不然會因為score<=60恒成立而變成死循環(huán)。