Computer Science, asked by routkabita1, 2 months ago

7. Convert the program written using DO WHILE-LOOP to FOR-NEXT loop.
I= 7
DO WHILE I<= 49
PRINTI
I= + 7
LOOP
END​

Answers

Answered by priya7668
1

Answer:

Here is your answer

Explanation:

for(int l = 7; l<=49; I=I+7)

System.out.print(+l);

HOPE IT WILL HELP YOU!

Similar questions