-1
public class whatever {
public static void main(String[] arguments){
int points = 0;
int target = 100;
tagetLoop:
while (target <= 100) {
for (int i = 0; i < target; i++) {
if (points > 50)
break tagetLoop;
points = points + i;
System.out.println("Points: " + points);
}
}
}
}
每當我運行這個,最終的輸出將是「分數:55」。爲什麼是55而不是50?在Loop中循環,爲什麼輸出這個數字?
它應該是如果(points> = 50) – jospratik
你知道什麼是調試器嗎? – 1ac0
歡迎來到堆棧溢出!調試是所有程序員的關鍵技能。我強烈建議你學習如何使用你的IDE內置調試器。您還可以將更多的System.out.println()語句添加到代碼中,以查看發生了什麼。 –