Declare a class DataSet that computes the sum and average of a sequence of integers. Supply methods
void addValue(int x)
int getSum()
double getAverage()
Hint: Keep track of the sum and the count of the values.
Then write a test program DataSetTester that calls addValue with inputs 13, -2, 3, 0, and prints the expected and actual results.