forked from tridibsamanta/CPP_Beginner_to_Expert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPP019_CalculateArea_Exercise.cpp
96 lines (80 loc) · 2.01 KB
/
CPP019_CalculateArea_Exercise.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* Author: Tridib Samanta
* Created: 15.01.2020
**/
#include<iostream>
#define PI 3.14
using namespace std;
void initMenu();
void menuDecision(int);
double areaCircle(double);
double areaSquare(double);
double areaRectangle(double,double);
double areaTriangle(double,double);
int main() {
int choice;
char cont;
do {
//system("cls");
initMenu();
cin>>choice;
menuDecision(choice);
cout<<"Do you want to continue ? (Y/N)"<<endl;
cin>>cont;
} while(cont=='Y'||cont=='y');
return 0;
}
void initMenu() {
cout<<"Select from the options :"<<endl;
cout<<"1.Circle"<<endl;
cout<<"2.Square"<<endl;
cout<<"3.Rectangle"<<endl;
cout<<"4.Triangle"<<endl;
}
void menuDecision(int ch) {
double r,a,b,h;
switch(ch) {
case 1:
cout<<"Enter the radius : "<<endl;
cin>>r;
areaCircle(r);
break;
case 2:
cout<<"Enter a side of the square : "<<endl;
cin>>a;
areaSquare(a);
break;
case 3:
cout<<"Enter the width and height of the rectangle : "<<endl;
cin>>a>>b;
areaRectangle(a,b);
break;
case 4:
cout<<"Enter the base and height of the triangle : "<<endl;
cin>>a>>h;
areaTriangle(a,h);
break;
default:
cout<<"Wrong choice !"<<endl;
}
}
double areaCircle(double r) {
double result = PI *r *r;
cout<<"The area of the circle is : "<<result<<endl;
return result;
}
double areaSquare(double a) {
double result = a* a;
cout<<"The area of the Square is : "<<result<<endl;
return result;
}
double areaRectangle(double a,double b) {
double result = a* b;
cout<<"The area of the Rectangle is : "<<result<<endl;
return result;
}
double areaTriangle(double a,double h) {
double result = (1/2.0)*a*h;
cout<<"The area of the Triangle is : "<<result<<endl;
return result;
}