The program takes 10 numbers of type float, which are entered by the user, and outputs the average ( also of type float ) of those 10 numbers. If I am going to test a range of values for those ten number, am I correct to test the highest values at 3.7E+38 / 10. If each number entered by the user is 3.7E+38 / 10, then the average of those ten numbers should never exceed 3.7E+38 correct?
I'm basically trying to find the upper and lower ranges for my test inputs.
P.S. All numbers input are positive.
FWD