Computer Science, asked by Soumo14, 9 months ago

What will be the output of the following code? int m=2; int n=15; for(int i=1;i<5;i++) m==; --n; System.out.println("m="+m); System.out.println("n="+n);​

Answers

Answered by da4729204
7

Answer:

bro see your code what is m== if it is m++ then output will be m=3 and n=14

Similar questions