// Operaator break hõlmavatest tsüklitest väljumiseks class BreakLoop4 { public static void main(String args[]) { outer: for (int i=0; i<3; i++){ System.out.print("i: "+i); for (int j=0; j<100; j++){ if (j == 10) break outer; System.out.print(j+" "); } System.out.println("Seda ei väljastata"); } System.out.println("Tsükkel lõppes"); } }