This shows you the differences between two versions of the page.
| — |
java:control_structures:continue [2024/02/16 01:03] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== continiue ====== | ||
| + | <code java> | ||
| + | continiue; | ||
| + | </code> | ||
| + | continiue breaks a loop at a given point and continiue the loop | ||
| + | |||
| + | |||
| + | ===== example of continiue in java ===== | ||
| + | <code java> | ||
| + | package codereferececomjava; | ||
| + | |||
| + | public class CodeRefereceComJava { | ||
| + | |||
| + | |||
| + | public static void main(String[] args) { | ||
| + | |||
| + | int i; | ||
| + | for (i=40;i<=45;i++) { | ||
| + | if (i==42) continue; | ||
| + | System.out.println("The answer is probably not "+i); | ||
| + | } | ||
| + | |||
| + | } | ||
| + | } | ||
| + | |||
| + | </code> | ||
| + | |||
| + | === output of continiue === | ||
| + | The answer is probably not 40 | ||
| + | The answer is probably not 41 | ||
| + | The answer is probably not 43 | ||
| + | The answer is probably not 44 | ||
| + | The answer is probably not 45 | ||