this Is a program in computer of class 8
this is the conversion of for loop into while loop
Attachments:
Answers
Answered by
1
Mark the answer as Brainliest if you like it.
Answer:
int m;
int i=1;
while(i<=10)
{m=m*i;
System.out.println(m);
i++;
}
Similar questions