To input five numbers into an array and find out the sum of all the numbers. (Qbasic Code)
- CLS
FOR i = 1 TO 5
INPUT "Enter the number"; n(i)
s = s + n(i)
NEXT i
PRINT "The sum of the numbers"; s
END