To display the series 2, 1, 3, 4, 7, 11, 18 … upto 10th term. (Qbasic Code)

To display the series 2, 1, 3, 4, 7, 11, 18 … upto 10th term.
  • CLS
    a = 2
    b = 1
    PRINT a
    PRINT b
    FOR i = 1 TO 8
        c = a + b
        PRINT c
        a = b
        b = c
    NEXT i
    END

Share :

Twitter
Back To Top

facebook main

counter

Powered by Blogger.