Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

// Use continue with a label.

class ContToLabel {
public static void main(String args[]) {
outerloop:
for(int i=1; i < 10; i++) {
System.out.print("\nOuter loop pass " + i + ", Inner loo
p: ");
for(int j = 1; j < 10; j++) {
if(j == 5) continue outerloop; // continue outer
loop
System.out.print(j);
}
}
}
}

You might also like