Q:

C++ Program to Calculate Area of Rectangle

0

C++ Program to Calculate Area of Rectangle.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used CodeBlocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include<iostream>
#define PI 3.141
using namespace std;

int main()
{

   int length, breadth, area;

   cout << "Enter length of rectangle : ";
   cin >> length;
   
   cout << "Enter breadth of rectangle : ";
   cin >> breadth;

   // Formula to calculate area of Rectangle
   area = length * breadth;
   cout << "Area of rectangle : " << area;
   
   return 0;
}

Result:

Enter length of rectangle : 4

Enter breadth of rectangle : 4

Area of rectangle : 16

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Program to convert days to years, weeks and da... >>
<< C++ Program to Calculate Area of Square...