blob: d531a6b7d5d90d172e3927783747f28980f1e2d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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/>.
*/
|