//编译器是C90标准
#include <stdio.h>
#include <math.h>
main()
{
long double a,b,c,average,square;//定义长整型
printf("键入所求三角形的三边:");//提示所要键入的内容
scanf("%llf %llf %llf",&a,&b,&c);//键入三边长
average=(long double)((a+b+c)/2);//求三边的平均数
square=sqrt((long double)(average*(average-a)*(average-b)*(average-c)));//运用海伦公式
printf("三角形面积为%llf。",(long double)square);//调试输出
}