What is the output of the following java code?
int m = 1000;
int k = 3000;
while (+ + m < – – k);
System.out.println(m);
1
2000
2
Error
3
1000
4
4000
What is the output of the following java code?
int m = 1000;
int k = 3000;
while (+ + m < – – k);
System.out.println(m);