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 input a number and print the multiplication table of the same number upto 10th terms. (Qbasic Code)

A program to input a number and print the multiplication table of the same number upto 10th terms. (Qbasic Code)

Using FOR .... NEXT
  • CLS
    INPUT "Enter any number"; n
    FOR i = 1 TO 10
        a = n * i
        PRINT n; "x"; i; "="; a
    NEXT i
    END


Using WHILE .... WEND
  • CLS
    INPUT "Enter any number"; n
    i = 1
    WHILE i <= 10
        a = n * i
        PRINT n; "x"; i; "="; a
        i = i + 1
    WEND
    END

Share :

Twitter
Back To Top

facebook main

Powered by Blogger.