C++ Program to find Area and Perimeter of Rectangle Using Class

Here is C++ program code to find the area and perimeter of rectangle using class

#include<iostream>
#include<math.h>

using namespace std;

class rectangle
{
    int length;
    int breadth;
public:
    int getarea(int l,int b)
    {
        int area;
        area = l * b;
        cout << "Area = " << area << "\n";
    }
   
int getperimeter(int l,int b)
    {
        int peri;
        peri = 2 * (l + b);
        cout << "Perimeter = " << peri << "\n";
    }
};
int main()
{
    int l,b;
    rectangle r;
    cout << "Enter length of rectangle ";
    cin >> l ;
    cout << "Enter breadth of rectangle ";
    cin >> b ;
    r.getarea(l,b);
    r.getperimeter(l,b);

return 0;
}

Output:



Check out other C++ programs:




  • C++ Program to find the distance between two points
  • C++ program to find largest number among 10 numbers
  • C++ program to find whether the equation is real or imaginary and also finds roots of that Equation



  • Post a Comment

    0 Comments