Give the output of the following: int n=10; while (true) {if (n<5) continue; n=n-2;} System.out.println(n);
Reveal answer
Fill a bubble to check yourself
Give the output of the following: int n=10; while (true) {if (n<5) continue; n=n-2;} System.out.println(n);