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 find the product of first n natural number.

REM To find the product of first n natural numbers (Qbasic Code)
CLS
INPUT "Enter the number"; n
p = 1
FOR i = 1 TO n
    p = p * i
NEXT i
PRINT "The product upto"; n; "="; p
END


Using SUB Procedure
DECLARE SUB product (n)
CLS
INPUT "Enter the number"; n
CALL product(n)
END

SUB product (n)
p = 1
FOR i = 1 TO n
        p = p * i
NEXT i
PRINT "The product upto"; n; "="; p
END SUB


Using FUNCTION Procedure
DECLARE FUNCTION product (n)
CLS
INPUT "Enter the number"; n
PRINT product (n)
END

FUNCTION product (n)
p = 1
FOR i = 1 TO n
        p = p * i
NEXT i
product = p
END FUNCTION

Share :

Twitter
Back To Top

facebook main

Powered by Blogger.