forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMulti_Level.cpp
77 lines (60 loc) · 1.05 KB
/
Multi_Level.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
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
#include <iostream>
using namespace std;
class Father
{
protected:
int age;
public:
void setage()
{
age = 75;
}
int getage()
{
return age;
}
};
class Son : public Father // Son class inherited from Father
{
protected:
int S_age;
public:
void setage_S()
{
S_age = 45;
}
int getage_S()
{
return S_age;
}
};
class GrandSon : public Son // Grandson class inherited from Son
{
protected:
int GS_age;
public:
void setage_GS()
{
GS_age = 15;
}
int getage_GS()
{
return GS_age;
}
};
int main()
{
GrandSon obj;
obj.setage();
obj.setage_S();
obj.setage_GS();
cout << "Father's age : " << obj.getage() << endl;
cout << "Son's age : " << obj.getage_S() << endl;
cout << "Grandson's age : " << obj.getage_GS() << endl;
return 0;
}
/* Output
Father's age : 75
Son's age : 45
Grandson's age : 15
*/