To display the series 1, 8, 27 …… upto 10th term. (Qbasic Code)

To display the series 1, 8, 27 …… upto 10th term.
 Using For ..... NEXT
  • CLS
    FOR i = 1 TO 10
        PRINT i ^ 3
    NEXT i
    END

 Using DO .... WHILE
  • CLS
    c = 1
    DO
        PRINT c ^ 3
        c = c + 1
    LOOP WHILE c <= 10
    END

Share :

Twitter
Back To Top

facebook main

counter

Powered by Blogger.