// Name: msglm // Introduction: Exam Average // Description: Calculates the average score between exams given exam scores. #include using namespace std; const int NUMOFSCORES = 3; void testAverage(); int main() { testAverage(); cout << "Terminating" << endl; return 0; } void testAverage() { double avg; double test1; double test2; double test3; cout << "Enter 3 test scores. decimals are acceptable.\n"; cout << "Test 1\n"; cin >> test1; cout << "Test 2\n"; cin >> test2; cout << "Test 3\n"; cin >> test3; avg = (test1 + test2 + test3) / NUMOFSCORES; cout << "Average test score: " << avg << endl; } /*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * You should have received a copy of the GNU General Public License along with this program. If not, see . */