User Tools

Site Tools


java:control_structures:continue

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

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

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
java/control_structures/continue.txt · Last modified: 2024/02/16 01:03 (external edit)

Impressum Datenschutz