Write the definition for a class called Rectangle that has floating point data members length and width. The class has the following member functions: void setlength(float) to set the length data member void setwidth(float) to set the width data member float perimeter() to calculate and return the perimeter of the rectangle float area() to calculate and return the area of the rectangle void show() to display the length and width of the rectangle int sameArea(Rectangle) that has one parameter of type Rectangle. sameArea returns 1 if the two Rectangles have the same area, and returns 0 if they don't. 1. Write the definitions for each of the above member functions. 2. Write main function to create two rectangle objects. Set the length and width of the first rectangle to 5 and 2.5. Set the length and width of the second rectangle to 5 and 18.9. Display each rectangle and its area and perimeter. 3. Check whether the two Rectangles have the same area and print a message indicating the result. Set the length and width of the first rectangle to 15 and 6.3. Display each Rectangle and its area and perimeter again. Again, check whether the two Rectangles have the same area and print a message indicating the result.
#include<iostream>
using namespace std;
class rectangle
{
private:
float length,breadth;
public:
void setlength(float l)
{
length=l;
}
void setwidth(float b)
{
breadth=b;
}
float perimeter(void);
float area(void);
void show(void);
int samearea(rectangle);
};
void rectangle :: show()
{
cout<<"the length of rectangle is "<<length<<endl;
cout<<"the breadth of rectangle is "<<breadth<<endl;
}
float rectangle :: perimeter ()
{
float peri=2*(length+breadth);
return (peri);
}
float rectangle :: area ()
{
float arr=length*breadth;
return (arr);
}
int rectangle :: samearea(rectangle r)
{
float areaf=length*breadth;
float areas=r.length*r.breadth;
if (areaf == areas)
{
return 1;
}
else
return 0;
}
int main()
{
rectangle r1,r2,r3;
r1.setlength(2);
r1.setwidth(3);
r1.show();
cout<<"The perimeter of first rectangle is : "<<r1.perimeter()<<endl;
cout<<"The area of first rectangle is : "<<r1.area()<<endl;
r2.setlength(2);
r2.setwidth(3);
r2.show();
cout<<"The perimeter of second rectangle is : "<<r2.perimeter()<<endl;
cout<<"The area of second rectangle is : "<<r2.area()<<endl;
if (r1.samearea(r2))
{
cout<<"these rectangles are equal "<<endl;
}
else
cout<<"these rectangles are not equal "<<endl;
}
output :
the length of rectangle is 2
the breadth of rectangle is 3
The perimeter of first rectangle is : 10
The area of first rectangle is : 6
the length of rectangle is 2
the breadth of rectangle is 3
The perimeter of second rectangle is : 10
The area of second rectangle is : 6
these rectangles are equal
Comments
Post a Comment