i can't figure out where to even start with this.
You will generate a set of data simulating (unrealistically) peak daily temperatures over a 100-day period. Your program will have the following parts and perform the following operations:
(1) Two initially empty array with size 100 and data type "double". One will store temperatures in degrees Fahrenheit and the other will store temperatures in degrees Celcius.
(2) Using a for loop, populate the first array with double precision values representing temperatures in degrees Fahrenheit. These values should be generated using the random number genrator, and should be between 70.0 and 100.0 degrees. Important: DO NOT use the srand( ) function. I want everyone to generate the same 100 random numbers. The correctness of your final answers will count towards your grade!
(3) Once the first array is populated, use another for loop to convert the values to degrees Celcius. The conversion is C=(5/9)*(F - 32). These converted values should be stored sequentially in the second array.
(4) Using the statistics library and its header file (stat_lib.ccp and stat_lib.h), calculate the minimum, maximum, mean, and standard deviation of the temperature in degrees Celcius. Output these results to the screen.
The statistics library source and header files are posted in .rtf format. You will have to copy and paste them into appropriate files in Visual C++. Remember, you must create files called stat_lib.ccp and stat_lib.h, and include the header file before your main function using the #include statement.
OK