輸入三角形的三條邊,求三角形的面積,用C++實現
輸入三角形的三條邊,求三角形的面積,用C++實現
#include
using namespace std;
int main()
{
double a,b,c,s;
cout<<"請輸入三角形的三邊長度:";
cin>>a>>b>>c;
if( a+b<=c || fabs(a-b)>=c)
printf("the num you input is wrong!");
else
{
s=(a+b+c)/2;
cout<<"The area is "<<sqrt(s*(s-a)*(s-b)*(s-c))<<'\n';
}
return 0;
}