-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
92 lines (73 loc) · 1.3 KB
/
main.cpp
File metadata and controls
92 lines (73 loc) · 1.3 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <bits/stdc++.h>
using namespace std;
class Student{
protected:
string name;
string id;
float score;
public:
Student()
{
this->name = "no Name";
this->id = "no id";
this->score = 0.00;
}
Student(string name, string id, float score)
{
this->name = name;
this->id = id;
this->score = score;
}
void output()
{
cout<<"Name : "<<this->name<<"\n";
cout<<"Id : "<<this->id<<"\n";
cout<<"Score : "<<this->score<<"\n";
}
};
class Gradute: public Student{
private:
string superVisor;
public:
Gradute()
{
this->superVisor = "No Supervisor";
}
Gradute(string name, string id, float score, string supName)
{
this->name = name;
this->id = id;
this->score = score;
this->superVisor = supName;
}
void output()
{
cout<<"Name : "<<this->name<<"\n";
cout<<"Id : "<<this->id<<"\n";
cout<<"Score : "<<this->score<<"\n";
cout<<"Super Visor Name: "<<this->superVisor<<"\n";
}
};
int main()
{
string name, id, sName;
float score;
cin>>name>>id>>score;
cin>>sName;
Gradute g1(name, id, score, sName);
cout<<"Task 1"<<endl;
g1.output();
cout<<endl;
cout<<endl;
// task 2;
cout<<"Task 2"<<endl;
Gradute g2;
g2.output();
cout<<endl;
cout<<endl;
//task 3;
cout<<"Task 3"<<endl;
Gradute g3("Milon", "124", 40.60, "Barek");
g3.output();
return 0;
}