Question: Write a C ++ program for reading information from a data file and saving a summary report into another data file for the average value,
Write a C ++ program for reading information from a data file and saving a summary report into another data file for the average value, the maximum value, and the minimum value.
A data file named 'price.dat that contains the price of different items, the first record in the price data file contains an integer that specifies the number of records that follow. Each of the following lines contains an id and the corresponding price.
10 1 1000.25 2 55.25 3 9999.99 4 33.45 5 2000.00 6 1588.88 7 1699.99 8 14898.25 9 13734.21 10 13523.24
The output of the problems should be saved into another data file, named 'Output.dat'. With the following data:
Number of price readings: 10 Maximum price: 14898.30 Minimum price: 33.45 Average price: 5853.35
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
