What will be the output of this code?
for (int i = 0; i < 5; i++) {
if (i == 3)
continue;
System.out.print(i + " ");
}
0 1 2 3 4
0 1 2 4
0 1 2
Compilation Error
This question is part of this quiz :
Java Control Statements and Loops