Write a code in C++ this to find the area and perimeter of a rectangle area = LENGTH * WIDTH . perimeter = 2 * LENGTH + 2 * WIDTH?
SOLUTION:
#include <iostream>
using namespace std;
int main (int argc, char *argv[]) {
double length ;
double width ;
double perimeter ;
double area;
cout<<"Type the width of the rectangle:";
cin>>width;
cout<<"Type the length of the rectangle:";
cin>>length;
perimeter =2*width+2*length;
area=width*length;
cout<<"the Area of the rectangle:"<<area<<endl;
cout<<"the Perimeter of the rectangle:"<<perimeter<<endl;
return 0;
}
Escriba un código en C++ para encontrar el área y el perímetro de un
área del rectángulo = largo * ancho
perímetro = 2 * LONGITUD + 2 * ANCHO
SOLUCIÓN:
#include<iostream>
using namespace std;
int main (int argc, char *argv[]) {
double base;
double altura;
double perimetro;
double area;
cout<<"ingrese base del rectangulo:";
cin>>base;
cout<<"ingrese altura del rectangulo:";
cin>>altura;
perimetro=2*base+2*altura;
area=base*altura;
cout<<"el area del rectangulo es:"<<area<<endl;
cout<<"el perimetro del rectangulo es:"<<perimetro<<endl;
return 0;
}