-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathq7.cpp
38 lines (30 loc) · 836 Bytes
/
q7.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
// Write a program to print the area of a rectangle by creating a class named 'Area' taking the values of its length and breadth as parameters of its constructor and having a function named 'returnArea' which returns the area of the rectangle. Length and breadth of the rectangle are entered through keyboard.
#include <iostream>
using namespace std;
class Area
{
public:
float length;
float breadth;
Area(float l, float b)
{
length = l;
breadth = b;
}
float returnArea()
{
return length * breadth;
}
};
int main()
{
int l;
int b;
cout << "Enter length: ";
cin >> l;
cout << "Enter breadth: ";
cin >> b;
Area rectangle(l, b);
cout << "Area of rectangle with length " << l << " and " << b << " is " << rectangle.returnArea();
return 0;
}