Computer Science, asked by angelicsoul482, 4 months ago

convert the following while loop to the corresponding for loop​

Attachments:

Answers

Answered by esccba28
3
For(int n=10;n>=1;n—)
{
System.out.println(m*n);
n—;
}
Answered by rimisharauniyar22
4

Answer:

int m=5;

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

{

System.out.print(m*n)

}

Explanation:

Similar questions