Calculating Primes: using continue statement and label : Continue Statement « Statement Control « Java Tutorial






continue may be followed by a label to identify which enclosing loop to continue to.

public class MainClass {
  public static void main(String[] args) {
    int nValues = 50;

    OuterLoop: for (int i = 2; i <= nValues; i++) {
      for (int j = 2; j < i; j++) {
        if (i % j == 0) {
          continue OuterLoop;
        }
      }
      System.out.println(i);
    }
  }
}
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47








4.9.Continue Statement
4.9.1.The continue Statement
4.9.2.The continue statement: skips all or part of a loop iteration
4.9.3.The Labeled continue statement
4.9.4.Calculating Primes: using continue statement and label