To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
sum EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
sum Example
10 DIM Array(4)
20 DATA 1, 2, 3, 4, 5
30 RESTORE
40 CLEAR SCREEN
50 READ Array(*)
60 PRINT "The sum of the array: "
70 PRINT Array(*)
80 PRINT "is";SUM(Array);"."
90 END