The continue statement
When a continue statement is encountered, the rest of the current iteration is skipped, and another iteration begins
for(num = 1; num <= 20; num++) { if (num == 12) continue; System.out.println(�num is � + num);}System.out.println(�I�m after the loop!�);