Saved Bookmarks
| 1. |
) Analyze and determine how many times will the loop run and what will be the output { int m=5;while(m-->0)System.out,println(+m+" ");} |
|
Answer» ong>Answer: the loop runs 6 times (the condition BECOMES false the 6th time) output: 5 4 3 2 1 Explanation: please mark brainliest |
|