Advertisement
5_2007-2008 Math #185386

Area of rectangle

It gives you the area of the rectangle

AI

Yapay Zeka Özeti: 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.

Kaynak Kod
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;
 }
Upload
Orijinal Yorumlar (3)
Wayback Machine'den kurtarıldı