Answer :
Answer:
If you fix your program: instead of "while (a=4)" you will have: while(a<4)
It wil print:
> 123
Explanation:
You can check the output of that kind of programs in online repl consoles e.g: https://repl.it/languages/java10
Answer:
If you fix your program: instead of "while (a=4)" you will have: while(a<4)
It wil print:
> 123
Explanation:
You can check the output of that kind of programs in online repl consoles e.g: https://repl.it/languages/java10