diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /C++/ExamAverage2/ExamAverage2.cpp | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'C++/ExamAverage2/ExamAverage2.cpp')
-rw-r--r-- | C++/ExamAverage2/ExamAverage2.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
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 <iostream> +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 <https://www.gnu.org/licenses/>. + */ + |