README.md
December 5, 2022 ยท View on GitHub
Description
It gives you the area of the rectangle
More Info
The inputs are length and width
It is simply related to basic geometry concept
| Submitted On | |
| By | Jack Tabsun |
| Level | Beginner |
| User Rating | 3.8 (15 globes from 4 users) |
| Compatibility | Microsoft Visual C++ |
| Category | Math |
| World | C / C++ |
| Archive File |
Source Code
//Area of rectangle
#include<iostream.h>;
int main()
{
int length, width,Area;
cout<<"Enter the value of length ";
cin>>length;
cout<<"Enter the value of the width ";
cin>>width;
Area=length*width;
cout<<"The area is "<<Area<<"\n";
return 0;
}