Computer Science, asked by munmunchowdhurybunti, 10 months ago

Print the program in the qbasic in series 0,3,8,15​

Answers

Answered by kunwardurgesh3635
2

Answer:

CLS

A = 0

PRINT A

FOR I = 3 TO 7 STEP 2

A = A + I

PRINT A

NEXT I  

END

Similar questions