We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e6edaf commit e5a2d1aCopy full SHA for e5a2d1a
src/loops/continue.md
@@ -10,6 +10,7 @@ The only other situation this will not happen is if a `continue` statement is re
10
int x = 5;
11
while (x > 0) {
12
if (x == 4) {
13
+ x--; // Make sure the loop continues to 3
14
continue;
15
}
16
IO.println(x + " is a good number");
0 commit comments