Computer Science, asked by saxenaseema07054, 8 months ago

State the output
int m= 100;
int n = 110;
while (++ m<--n)
System.out.println (m);​

Answers

Answered by malathimala785
3

Answer:

109

Explanation:

++m gives you 101 and --n gives you 109 . And 101<109 is true so the m is printed

Answered by roopeshgowda156
0

Answer:

101 for m and 109 for n

Explanation:

101<109

Similar questions