User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







java:control_structures:continue

continiue

continiue;

continiue breaks a loop at a given point and continiue the loop

example of continiue in 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);
        }
 
    }
}

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