Monday 25 August 2014

Perimeter of Rectangle

Leave a Comment


//Perimeter of Rectangle 2 × (length + width)
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
double perimeter,length,width;

cout<<"Enter Length = ";
cin>>length;
cout<<"Enter Width = ";
cin>>width;
perimeter=2*(length +width);
cout<<"Perimeter of Rectangle = "<<perimeter;
getch();
}
If You Enjoyed This, Take 5 Seconds To Share It

0 Questions: