3. int m=5,n=10; while(m>=4) { System.out.println(m*n); m- -;} what is the output and how many times the loop will be executed ?
Answers
Answered by
0
Answer:
2 times loop runs
m=5 and 4
output 40
Similar questions