Home  |  IT Zone  | Practice ZoneTips / Tricks  |  Did You Know  |  Inspirational  |  Health  |  Insurance  |  Universities  |  Forex  |  Mathematics  |  Illusions  |  Children Day Quotes  |  Be Aware  |  Articles  | Funny Pics | Entertainment | Songs | Simple Joys of Life |

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 :

X
Back To Top

facebook main

Powered by Blogger.