Using the break Statement in a Loop: break out from a loop : Break Statement « Statement Control « Java Tutorial






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

    for (int j = 1; j < count; j++) {
      if (count % j == 0) {
        System.out.println("Breaking!!");
        break;
      }
    }
  }
}
Breaking!!








4.8.Break Statement
4.8.1.The break Statement
4.8.2.Using the break Statement in a Loop: break out from a loop
4.8.3.Breaking Indefinite Loops
4.8.4.Labelled breaks breaks out of several levels of nested loops inside a pair of curly braces.
4.8.5.The Labeled break Statement