求大神写个输入三角形的三边求面积的C语言程序Input then length of the three lines of a triangle ,please calculate the area of it, andprint out the result 英语描写如上 要不要IF语句来判断啊
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/20 13:56:20
求大神写个输入三角形的三边求面积的C语言程序Input then length of the three lines of a triangle ,please calculate the area of it, andprint out the result 英语描写如上 要不要IF语句来判断啊
求大神写个输入三角形的三边求面积的C语言程序
Input then length of the three lines of a triangle ,please calculate the area of it, andprint out the result
英语描写如上 要不要IF语句来判断啊
求大神写个输入三角形的三边求面积的C语言程序Input then length of the three lines of a triangle ,please calculate the area of it, andprint out the result 英语描写如上 要不要IF语句来判断啊
#include<stdio.h>
#include<math.h>
double CalcArea(double a,double b,double c)
{
double s;
s=(a+b+c)/2;
return sqrt(s*(s-a)*(s-b)*(s-c));
}
int main()
{
double a,b,c;
scanf("%lf %lf %lf",&a,&b,&c);
if(a+b>c&&a+c>b&&b+c>a)
{
printf("%lf,%lf,%lf三条边组成的三角形面积为%lf\n",a,b,c,CalcArea(a,b,c));
}
else
{
printf("%lf,%lf,%lf构不成三角形\n",a,b,c);
}
return 0;
}