-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrectangleclass.cpp
More file actions
39 lines (38 loc) · 859 Bytes
/
Copy pathrectangleclass.cpp
File metadata and controls
39 lines (38 loc) · 859 Bytes
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
// create a class reactangle with private attribute for length and width, and public methods to calculate area and perimeter:
#include <iostream>
using namespace std;
class Rectangle
{
private:
double length, width;
public:
Rectangle(double l, double w)
{
l = length;
w = width;
}
void display()
{
cout << "Enter a length: " << endl;
cin >> length;
cout << "Enter a width: " << endl;
cin >> width;
}
double calculateArea()
{
return length * width;
}
double calculatePerimeter()
{
return 2 * (length + width);
}
};
int main()
{
double length, width;
Rectangle r1(length, width);
r1.display();
cout << r1.calculateArea() << endl;
cout << r1.calculatePerimeter() << endl;
return 0;
}