Area of rectangle
It gives you the area of the rectangle
AI
AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
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;
}
Upload
Original Comments (3)
Recovered from Wayback Machine