README.md

December 5, 2022 ยท View on GitHub

Area of rectangle

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
ByJack Tabsun
LevelBeginner
User Rating3.8 (15 globes from 4 users)
CompatibilityMicrosoft Visual C++
CategoryMath
WorldC / 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;
 }