Advertisement
ASP_Volume2 Math #41302

Area of rectangle

It gives you the area of the rectangle

AI

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.

源代码
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;
 }
原始评论 (3)
从 Wayback Machine 恢复