-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21_constructor1.cpp
50 lines (47 loc) · 966 Bytes
/
21_constructor1.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
//
// Created by Varsha on 21-03-2023.
//
//Write class with overloaded constructors to initialise the triangle. Find the area
//of the triangle.
#include <iostream>
#include <cmath>
using namespace std;
class triangle{
private:
int a,b,c;
public:
triangle(int x){
a=b=c=x;
}
triangle(int x, int y){
a = b = x;
c = y;
}
triangle(int x,int y,int z){
a = x;
b = y;
c= z;
}
void find_area(){
float s = (a+b+c)/2;
cout<<"Area of triangle: "<<sqrt(s*(s-a)*(s-b)*(s-c));
}
};
int main(){
int a,b,c;
cout<<"Enter side of equilateral triangle: ";
cin>>a;
triangle t1(a);
t1.find_area();
cout<<endl;
cout<<"Enter base and height of isosceles triangle: ";
cin>>a>>b;
triangle t2(a,b);
t2.find_area();
cout<<endl;
cout<<"Enter sides of triangle: ";
cin>>a>>b>>c;
triangle t3(a,b,c);
t3.find_area();
return 0;
}