Home > Java Programming > Flow Control > Questions and Answers
Q: |
What will be the output of the program? int I = 0;
outer: while (true) { I++; inner: for (int j = 0; j < 10; j++) { I += j; if (j == 3) continue inner; break outer; } continue outer; } System.out.println(I); | ||||||||||
|
Comment on this Question | |
Name: | |
|