欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

求三角形的面积

程序员文章站 2024-02-21 14:31:58
...

使用C++编写程序:输入三角形的三条边长(实数),输出三角形的面积,结果保留2位小数。

程序代码如下:

#include<iostream>
#include<iomanip>
#include<cmath>
#define ElemType double

using namespace std;

class Triangle
{
public:
	Triangle(ElemType a, ElemType b, ElemType c) :A(a), B(b), C(c) {};
	void GetArea();
private:
	ElemType A, B, C;
};

inline void Triangle::GetArea()
{
	ElemType P;
	P = (A + B + C) / 2.0;
	cout.setf(ios::fixed);                                               //设置输出为浮点数
	cout << setprecision(2) << sqrtf(P*(P - A)*(P - B)*(P - C));         //海伦公式
}

int main()
{
	ElemType a, b, c;
	cin >> a >> b >> c;
	Triangle T(a, b, c);
	T.GetArea();
	return 0;
}

程序运行结果如下:

求三角形的面积

相关标签: C++ c++