39_求三角形的面积

/*
	时间:2012年10月12日22:30:22
	目的:求三角形的面积
*/

# include <iostream>

# include <cmath>//使用数学函数时要包含头文件cmath

# include <iomanip>//使用I/O流控制符要包含头文件iomanip

using namespace std;

int main()
{
	double a, b, c;
	cout<<"please enter a, b, c:";
	cin>>a>>b>>c;

	if(a + b > c && b + c > a && c + a > b)
	{
		double s, area;//复合语句内定义变量,只作用于复合语句内部
		s = (a + b + c)/2;
		area = sqrt(s * (s-a) * (s-b) * (s-
			c));
		cout<<setiosflags(ios::fixed)<<setprecision(4);//指定输出数包含4位小数
		cout<<"area = "<<area<<endl;//在复合语句内输出局部变量的值
	}
	else
		cout<<"it is not a trilateral!"<<endl;

	return 0;
}

你可能感兴趣的:(ios,c,include)