> Write and test a C++ program to print the sum and average of a set of integer numbers??

Write and test a C++ program to print the sum and average of a set of integer numbers??

Posted at: 2014-12-18 
Write and test a C++ program to print the sum and the average of a set of integer numbers. The program should first read a single positive integer number from the user, which will be how many numbers to sum. Then the program should then read in and sum this many numbers. The program should then compute the average. Both the sum and the average should then be printed out. The program should use no more than four integer (int) variables.