執行一些考試修訂。一個問題是,修改代碼以便循環至少執行一次。修改while循環執行至少一次
我的代碼:
int x = 0;
while (x < 10) {
if (x % 2 != 0) {
System.out.println(x);
}
x++;
}
現在我知道,同時將循環當條件爲真,我知道我不能刪除X ++,因爲這會給我無窮的零。我想我會刪除if語句和與之相關的大括號。
你會同意嗎?
int x = 0;
while (x < 10) {
System.out.println(x);
x++;
}
看看'do-while'循環。 –
你已經改變了輸出 - 你確定允許嗎? – tabstop
'if'語句只打印奇數,所以刪除它會改變所需的輸出。 – egl