Mega Code Archive

 
Categories / Java Tutorial / Statement Control
 

Breaking Indefinite Loops

public class MainClass {   public static void main(String[] args) {     OuterLoop: for (int i = 2;; i++) {       for (int j = 2; j < i; j++) {         if (i % j == 0) {           continue OuterLoop;         }       }       System.out.println(i);       if (i == 107) {         break;       }     }   } } 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 101 103 107