1. 程式人生 > >c++中用海倫公式計算三角形面積

c++中用海倫公式計算三角形面積

海倫公式 :    

1、p=(a+b+c)/2 

2、面積=對p*(p-a)*(p-b)*(p-c)進行開根號

以下為程式碼實現

#include<iostream>
#include<algorithm>
#include<math.h>
using namespace std;
int main()
{
	double a,b,c,p,Area;
	cin>>a>>b>>c;
	p=(a+b+c)/2;
	Area=sqrt(p*(p-a)*(p-b)*(p-c));
	cout<<Area<<endl;
    return 0;
	
}