Home  |  IT Zone  |  Tips / Tricks  |  Did You Know  |  Inspirational  |  Health  |  World Infos  |  Insurance  |  Universities  |  Forex  |  Mathematics  |  Illusions  |  Children Day Quotes  |  Fun / Jokes  |  Decent Quotes  |  Birthday Msgs  |  Good Morning Msgs  |  Good Night Msg  |  Husband Wife Jokes  |  Teacher Students Jokes  |  Insult Jokes  |  Love Quotes  |  Sad Quotes  |  Funny Pics  |  Be Aware  |  Articles  |  Simple Joys of Life 

A Program To Print The Fibonacci Series (Qbasic code)

Using FOR ..... NEXT

CLS
a = 1
b = 1
PRINT a;
PRINT b;
FOR i = 1 TO 8
    c = a + b
    PRINT c;
    a = b
    b = c
NEXT i
END


Using WHILE ..... WEND
  •  CLS
    i = 1
    a = 1
    b = 1
    PRINT a
    PRINT b
    WHILE i <= 10
        c = a + b
        PRINT c
        a = b
        b = c
        i = i + 1
    WEND
    END

Share :

Twitter
Back To Top

facebook main

Powered by Blogger.