Loops
While
while (condition) {
// code...
}
For
for (int i = 0; i < 5; i++) {
// code...
}
for (int val : arr) {
// code...
}Break & Continue
continue; // starts back at the top of the loops scope
break; // exits the loopwhile (condition) {
// code...
}
for (int i = 0; i < 5; i++) {
// code...
}
for (int val : arr) {
// code...
}continue; // starts back at the top of the loops scope
break; // exits the loop