help
Author |
Message |
towring
|
Posted: Tue Oct 15, 2002 9:41 am Post subject: help |
|
|
Ive already think a lot but I still cant find an equation that will give the Largest and Smallest number on the list. Can anyone help me please. Thanks a lot.
var value, sum, average : real
var howMany : int
sum := 0
put skip, "Enter how many numbers in your list: " ..
get howMany
put "OK - enter all the numbers:"
% Counted loop - get each value and add it to the sum
for i : 1 .. howMany
get value
sum := sum + value
end for
% Compute the average
average := sum / howMany
put skip, "The average is ", average : 7 : 1, skip |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Tony
|
|
|
|
|
|
|