Demonstrates break and continue keywords : Break Continue « Language Basics « Java






Demonstrates break and continue keywords

Demonstrates break and continue keywords
 

public class BreakAndContinue {

  public static void main(String[] args) {
    for(int i = 0; i < 100; i++) {
      if(i == 74) break; // Out of for loop
      if(i % 9 != 0) continue; // Next iteration
      System.out.println(i);
    }
    int i = 0;
    // An "infinite loop":
    while(true) {
      i++;
      int j = i * 27;
      if(j == 1269) break; // Out of loop
      if(i % 10 != 0) continue; // Top of loop
      System.out.println(i);
    }
  }
}



           
         
  








Related examples in the same category

1.Break DemoBreak Demo
2.Break With Label DemoBreak With Label Demo
3.Labelled breaks breaks out of several levels of nested loops inside a pair of curly braces.
4.Continue Demo Continue Demo
5.Continue With Label Demo