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