-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patha.cpp
52 lines (44 loc) · 826 Bytes
/
a.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
#include <iostream>
using namespace std;
class Rectangle
{
int height, width;
public:
Rectangle(int h, int w);
Rectangle();
friend istream &operator>>(istream &, Rectangle &);
int getArea();
~Rectangle();
};
Rectangle::Rectangle(int h, int w)
{
cout << "constructor called.\n";
height = h;
width = w;
}
Rectangle::Rectangle()
{
cout << "constructor called.\n";
height = width = 0;
}
istream &operator>>(istream &stream, Rectangle &rect)
{
cout << "Enter width and height: \n"; //not good practise
stream >> rect.width >> rect.height;
return stream;
}
int Rectangle::getArea()
{
return height * width;
}
Rectangle::~Rectangle()
{
cout << "Destructor called\n";
}
int main()
{
Rectangle a;
cin >> a;
cout << a.getArea() << "\n";
return 0;
}