Data Set

Write a class DataSet that has methods that 1. allows the user to “incorporate a value into the data set” (although the specific value is not remembered over time), 2. calculates the average of all the values entered, and 3. calculates the maximum value entered in the data set.

Then write a DataSetTester that demonstrates the use of the DataSet class.