Computer Science, asked by aarush4706, 10 months ago

• 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 rogan21
2

Answer:

T = 15

do

{

print(t)

t = t - 3

}while (T>1)

Similar questions