5.15.21.What is the output of the following code(nested for loop with continue label)?
public class MainClass { public static void main(String[] argv) { int i, j;
lab: for (i = 0; i < 6; i++) { for (j = 5; j > 2; j--) { if (i == j) {
System.out.print(" " + j); continue lab;
}
}
}