1编写程序,求三角形的面积。输入三角形的三个边,利用海伦公式求三角形面 积。(海伦公式为:sgt(1*(1-x)*(1-y)*(1-z),其中,1为三角形周长的一半,x、y、 z是三角形的三个边边长的值。C++
时间: 2024-03-11 10:49:31 浏览: 79
好的,以下是 C++ 代码实现:
```c++
#include <iostream>
#include <cmath>
using namespace std;
int main() {
float a, b, c;
cout << "请输入三角形的三条边长:" << endl;
cin >> a >> b >> c;
float s = (a + b + c) / 2; // 计算半周长
float area = sqrt(s * (s - a) * (s - b) * (s - c)); // 计算三角形面积
cout << "三角形的面积为:" << area << endl;
return 0;
}
```
运行程序后,输入三角形的三个边长,即可得到三角形的面积。
阅读全文