这个表达式使用了海伦公式来计算三角形的面积。
海伦公式适用于任意三角形,通过三角形的三条边长来计算其面积。
具体公式为:
1、a,b,c 为三角形的三条边长 ;
2、p = (a + b + c)/2 ,即周长的一半 ;
参考程序
//爱码岛编程
#include <cmath>
#include <iostream>
using namespace std;
int main() {
cout.flags(ios::fixed);
cout.precision(3);
double a, b, c, p, s;
cin >> a >> b >> c;
p = (a + b + c) / 2;
s = sqrt(p * (p - a) * (p - b) * (p - c));
cout << s;
return 0;
}