public class ForLoopDemo {
public static void runForLoop(int start, int stop, int increment) {
for (int counter = start; counter <= stop; counter = increment) {
System.out.println(counter);
}
}
}
public class ForLoopDemoRunner {
public static void main(String[] args) {
System.out.print("start 2 : stop 90 : increment 5");
ForLoopDemo.runForLoop(2, 90, 5);
}
}
工作出於某種原因,這一切都運行在555(重複),當它應該運行:的Java For循環無法正常
2 7 12 17 22 27 32 37 42 47 52 57 62 67 72 77 82 87
也是我的老師讓我們把它放在一個二級格式。
你覺得'counter = increment'的確如此嗎?你不覺得它應該是'counter + =增量'嗎? – Pshemo
我認爲這是錯誤的,但我不知道如何正確打印結果。我的老師給了我這個視頻,但它不起作用。 https://www.youtube.com/watch?v=rjkYAs6gAkk – ChrisManfredi