// Write a program that prompts the user to input five test scores and then prints // the average test score. (Assume the test scores are decimal numbers.) #include using namespace std; int main() { double N1, N2, N3, N4, N5; double avg; cout << " Please enter 5 test scores " << endl; cin >> N1 >> N2 >> N3 >> N4 >> N5; avg = (N1 + N2 + N3 + N4 + N5)/5; // output the results cout << endl << "The average of your scores is " << avg << endl; }