write a program to print multiples of 5 using exit control loop (do while).
Answers
Answered by
0
x = 0
total = 5
while total <> 50
total = total * x
x= x+ 1
output total
endwhile
Similar questions