How many times will the following loops execute?
X = 5
DO UNTIL X < 1
PRINT X
X = X -2
LOOP
END
Answers
Answered by
0
Explanation:
How many times will the following loops execute?
X = 5
DO UNTIL X < 1
PRINT X
X = X -2
LOOP
END
Similar questions