निम्नलिखित जावा कोड का आउटपुट क्या है?
int m = 1000;
int k = 3000;
while (+ + m < – – k);
System.out.println(m);
1
2000
2
त्रुटि
3
1000
4
4000
निम्नलिखित जावा कोड का आउटपुट क्या है?
int m = 1000;
int k = 3000;
while (+ + m < – – k);
System.out.println(m);