这个涉及到三角形的面积s=(1/2)*(a*h) 以及C语言中的一个平方根的函数:sqrt函数。
你应该先根据三个边长求出其中对应的一条底边a上的高h
#include <stdio.h>
#include <math.h>
int main()
{
float a, b, c, h, x,s=0;
scanf("%f%f%f", &a, &b, &c);
x=(a*a+b*b-c*c)/(2*a);
h= sqrt(b*b-x*x);//计算底边a上的高h
s=(1/2)*(a*h) ;//计算三角形面积
printf("s = %f\n", s);
return 0;
}
望采纳。
温馨提示:答案为网友推荐,仅供参考