From 9d53d8857eaa1c9405894a88ca75bc4657e42f35 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 05:31:48 -0600 Subject: Inital Commit --- C++/ExamAverage2/ExamAverage2.cpp | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 C++/ExamAverage2/ExamAverage2.cpp (limited to 'C++/ExamAverage2/ExamAverage2.cpp') diff --git a/C++/ExamAverage2/ExamAverage2.cpp b/C++/ExamAverage2/ExamAverage2.cpp new file mode 100644 index 0000000..d531a6b --- /dev/null +++ b/C++/ExamAverage2/ExamAverage2.cpp @@ -0,0 +1,40 @@ +// 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 . + */ + -- cgit v1.2.3