Math, asked by meghana123211, 7 months ago

Convert the following program code into an equivalent for loop: 2m

int m = 5, n = 10;

while (n >= 1)

{

System.out.println(m * n);

n- -;

}​

Answers

Answered by Aakash2oo5
2

Answer:

for(int n=10; n>=1;n- -)

{

System.out.println(m*n)

}

Step-by-step explanation:

Please mark it as BRAINILIEST

PLEASE MATE

Similar questions