To Add The N Numbers Entered

To find the sum of the N numbers entered (qbasic code)
CLS
INPUT "How many numbers do you want to add"; n
FOR i = 1 TO n
    INPUT "Enter the number you want to add"; x
    s = s + x
NEXT i
PRINT "The sum of the numbers you entered is"; s
END

Share :

Twitter
Back To Top

facebook main

counter

Powered by Blogger.