int m=100 ; while(m>0) {if(m<10) break; m=m-10; } system.out.print("m is"+m);
Answers
Answered by
2
I think m should be 10.
Similar questions