Este programa pero cambiado a C++

Adjuntos:

Respuestas

Respuesta dada por: cristhianzg
2

Hola.

En código C++, seria de esta forma.

#include<iostream>


#include<math.h>


#include <iomanip>


 

using namespace std;



int main(){


float x1,x2,x3,y1,y2,y3,P,A;


float d1,d2,d3,S;


system("cls");


cout<<"Escriba el valor de x1,x2,x3,y1,y2,y3: "<<endl;


cin>>x1;


cin>>x2;


cin>>x3;


cin>>y1;


cin>>y2;


cin>>y3;


d1=sqrt(pow(x1-x2,2)+pow(y1-y2,2));


d2=sqrt(pow(x2-x3,2)+pow(y2-y3,2));


d3=sqrt(pow(x3-x1,2)+pow(y3-y1,2));


P=d1+d2+d3;


S=P/2;


A=sqrt(S*(S-d1)*(S-d2)*(S-d3));


cout<<fixed<<setprecision(2)<<"P = "<<P<<endl;


cout<<fixed<<setprecision(2)<<"A = "<<A<<endl;


return 0;


}


¡Saludos!

Preguntas similares