forked from m1n199honey/cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVirtual_function_Shape.cpp
57 lines (56 loc) · 1.38 KB
/
Virtual_function_Shape.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
#include<iostream>
using namespace std;
class Shape{
protected:
double TArea;
double RArea;
public:
virtual void Display() = 0;
virtual void Input(float, float) = 0;
};
class Triangle: public Shape {
public:
void Input(float Base, float Height){
TArea = 0.5*Base*Height;
}
void Display(){
cout << "Area of Triangle : " << TArea << endl;
}
};
class Retangle: public Shape{
double Area;
public:
void Input(float Base, float Height){
RArea = Base*Height*1.0;
}
void Display(){
cout << "Area of Rectangle : " << RArea << endl;
}
};
int main(){
Shape *Test;
int ch;
float B, H;
do{
cout <<"------------------------------" << endl
<< "1. Triangle " << endl
<< "2. Rectangle " << endl
<< "0. EXIT !" << endl
<< "choise : ";
cin >> ch;
switch(ch){
case 1: cout << "Ent 2 val : ";
cin >> B >> H;
Test = new Triangle(); break;
case 2: cout << "Ent 2 val : ";
cin >> B >> H;
Test = new Retangle();
break;
case 0: cout << "Thank u..." << endl; break;
default: cout << "try Again !" << endl ;
}
Test->Input(B, H);
Test->Display();
}while(ch != 0);
return 0;
}