-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhierarchical.cpp
68 lines (60 loc) · 1.2 KB
/
hierarchical.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
#include <bits/stdc++.h>
using namespace std;
// Hierarchical Inheritance
// Base Class
class Parent
{
public:
string father_name;
string mother_name;
Parent()
{
cout << "\nEnter the Father name : ";
cin >> father_name;
cout << "Enter the Mother name : ";
cin >> mother_name;
}
};
// Derived class 1
class Child1 : public Parent
{
public:
string son;
Child1()
{
cout << "Enter the Child name : ";
cin >> son;
}
void print()
{
cout << "\n\nThe father name is : " << father_name << endl;
cout << "The Mother name is : " << mother_name << endl;
cout << "The Son name is : " << son << endl;
}
};
// Derived class 2
class Child2 : public Parent
{
public:
string son2;
Child2()
{
cout << "Enter the Child name : ";
cin >> son2;
}
void print()
{
cout << "\n\nThe father name is : " << father_name << endl;
cout << "The Mother name is : " << mother_name << endl;
cout << "The Son name is : " << son2 << endl;
}
};
int main()
{
// Creating the obj;
Child1 lokesh;
lokesh.print();
Child2 amit;
amit.print();
return 0;
}