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
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