-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay13.cpp
48 lines (41 loc) · 1.17 KB
/
Day13.cpp
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
41
42
43
44
45
46
47
48
#include <iostream>
#include <vector>
using namespace std;
class Person{
protected:
string firstName;
string lastName;
int id;
public:
Person(string firstName, string lastName, int identification){
this->firstName = firstName;
this->lastName = lastName;
this->id = identification;
}
void printPerson(){
cout<< "Name: "<< lastName << ", "<< firstName <<"\nID: "<< id << "\n";
}
};
class Student : public Person{
private:
vector<int> testScores;
public:
Student(string firstName, string lastName, int id, std::vector<int>& scores)
: Person(firstName,lastName,id), testScores(scores) {}
char calculate() {
int average=0;
for(auto score : testScores) {
average += score;
}
average=average/testScores.size();
switch (average) {
case 90 ... 100 : return 'O';
case 80 ... 89 : return 'E';
case 70 ... 79 : return 'A';
case 55 ... 69 : return 'P';
case 40 ... 54 : return 'D';
default: return 'T';
}
}
};
int main() {