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

Popular Post

Write the definition for a class called complex that has floating point data members for storing real and imaginary parts. The class has the following member functions: void set(float, float) to set the specified value in object void disp() to display complex number object complex sum(complex) to sum two complex numbers & return complex number 1. Write the definitions for each of the above member functions. 2. Write main function to create three complex number objects. Set the value in two objects and call sum() to calculate sum and assign it in third object. Display all complex numbers.

Assume that a bank maintains two kinds of accounts, are called as saving account and current account. The saving account provides compound interest and withdrawal facilities but no cheque book facility. The current account provides cheque book facility but no interest. Current account holders should also maintain a minimum balance and if the balance falls below the level, a service charge is imposed. Create a class account that stores customer name, account number and type of account. From this derive the classes cur_acct and sav_acct to make them more specific to their requirements. Include necessary member functions in order to achieve the following tasks: a.Include constructor for all the three classes. b.Accept deposit amount from the customer and update the balance. c.Display the balance. d.Compute and deposit interest. e.Permit withdrawal and update the balance. f. Check for minimum balance, impose penalty, necessary and update the balance.