• Find errors in the following program. Rewrite the correct program underlining the corrections.
T = 15
DO UNTIL T < 1,
PRINT T
T=T-3
END
Answers
Answered by
2
Answer:
T = 15
do
{
print(t)
t = t - 3
}while (T>1)
Similar questions