Computer Science, asked by badhaikrishna363, 6 days ago

write a QBASIC program to print 1,8,27 upto 13 term.​

Answers

Answered by hafsasatti90
0

Answer:

Hope you like it.

Explanation:

DECLARE SUB SERIES()

CLS

CALL SERIES

END

SUB SERIES

FOR I = 1 TO 13

PRINT I ^ 3;

NEXT I

END SUB

Similar questions