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
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