What will be the output of the program?
int i = 1, j = 10; do { if(i++ > --j) /* Line 4 / { continue; } } while (i < 5); System.out.println(i = + i + and j = + j); / Line 9 */
Reveal answer
Fill a bubble to check yourself
What will be the output of the program?
int i = 1, j = 10; do { if(i++ > --j) /* Line 4 / { continue; } } while (i < 5); System.out.println(i = + i + and j = + j); / Line 9 */