Computer Science, asked by tobjv2020, 4 months ago

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 rahul77118
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