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 |

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 :

X
Back To Top

facebook main

Powered by Blogger.