Advertisement
C_Volume2 Math #82367

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
original-source
//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;
 }
Original Comments (3)
Recovered from Wayback Machine