Area of rectangle
It gives you the area of the rectangle
AI
ملخص الذكاء الاصطناعي: 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.
كود المصدر
//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
التعليقات الأصلية (3)
مسترجع من Wayback Machine