find the output of :int a; for (a=1;a<=10<a+=2) { system out println (a); }
Answers
Answered by
1
Explanation:
You will get an error because you didnt write ; after 10
but anyways it will display
1
3
5
7
9
Similar questions