25. Given the following code fragment with a continue to
a labeled statement, predict the printed output:
1. int i, j;
2. lab: for( i = 0; i < 6; i++ ){
3. for( j = 5; j > 2; j-- ){
4. if( i == j ) {
5. System.out.print(" " + j );
continue lab;
6. }
7. }
8. }
A. Output will be 3 4 5.
B. Output will be 3 4.
C. Output will be 3.
D. The statement on line 5 is never reached,
so there is no output.