C++: Programming Problem - cin Average

Name __________________________________

(10 points) Write a program that reads daily temperatures, as floats. Read in a loop until an EOF. After the input has been read, print the average value.

Sample input values


   10.0  11.3  4.5  -2.0  3.6  -3.3  0.0
   
The output should look something like the following. Formatting may vary.

   Average = Average is 3.44286

Hints