Convert the following while loop to the corresponding for loop : int m = 5, n = 10; while (n>=1) {System.out.println(m*n); n - –;}
Answers
Answered by
10
Answer:
Convert the following while loop to the corresponding for loop : int m = 5, n = 10; while (n>=1) {System.out.println(m*n); n - –;}
Similar questions