Answers for "break continue in java"

2

java how to continue outer loop

public class Test {
    public static void main(String[] args) {
        outerloop:
        for (int i=0; i < 5; i++) {
            for (int j=0; j < 5; j++) {
                if (i * j > 6) {
                    System.out.println("Breaking");
                    break outerloop;
                }
                System.out.println(i + " " + j);
            }
        }
        System.out.println("Done");
    }
}
Posted by: Guest on March-11-2021
1

break for loop java

public class Test {

   public static void main(String args[]) {
      int [] numbers = {10, 20, 30, 40, 50};

      for(int x : numbers ) {
         if( x == 30 ) {
            break;
         }
         System.out.print( x );
         System.out.print("\n");
      }
   }
}
Posted by: Guest on February-20-2020
2

continue in java

int i = 0;
while (i < 10) {
  if (i == 4) {
    i++;  //why do I need this line ?
    continue;
  }
  System.out.println(i);
  i++;
}
Posted by: Guest on June-17-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language