-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInheritance example.cpp
More file actions
108 lines (108 loc) · 1.65 KB
/
Inheritance example.cpp
File metadata and controls
108 lines (108 loc) · 1.65 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include "iostream"
#include "cmath"
using namespace std;
class shape
{
double l,b,a;
public:
void get_data(double c, double d=0)
{
l=c;
b=d;
}
double ret_l()
{
return l;
}
double ret_b()
{
return b;
}
virtual void display_area()
{
a=ret_b()*ret_l();
cout<<"rectangle's area: "<<a<<endl;
}
};
class triangle: public shape
{
double a;
public:
void get_data(double c, double d)
{
shape::get_data(c,d);
}
void display_area()
{
a=0.5*ret_b()*ret_l();
cout<<"triangle area: "<<a<<endl;
}
};
class rectangle: public shape
{
double a;
public:
void get_data(double c, double d)
{
shape::get_data(c,d);
}
void display_area()
{
a=ret_b()*ret_l();
cout<<"rectangle's area: "<<a<<endl;
}
};
class circle: public shape
{
double a;
public:
void get_data(double c)
{
shape::get_data(c);
}
void display_area()
{
a=3.14*pow(ret_l(),2);
cout<<"Circle's area: "<<a<<endl;
}
};
int main()
{
shape *sptr;
shape s1;
triangle t1;
rectangle r1;
circle c1;
int c;
double a,b;
while(true)
{
cout<<"Enter your choice: ";
cout<<"1.for triangle\n2.for rectangle\n3.for circle\n4.Exit\n";
cin>>c;
switch(c)
{
case 1: cout<<"Enter base and height: ";
cin>>a>>b;
sptr=&t1;
sptr->get_data(a,b)
sptr->display_area();
break;
case 2: cout<<"Enter length and breadth: ";
cin>>a>>b;
rectangle r1(a,b);
sptr=&r1;
sptr->display_area();
break;
case 3: cout<<"Enter radius: ";
cin>>a;
circle c1(a);
sptr=&c1;
sptr->display_area();
break;
case 4: exit;break;
default: cout<<"Wrong choice";
}
}
return 0;
}