C语言:已知三角形三边长,计算面积 —— 海伦公式
·
第一种方法:
利用三边长计算三角形某个角的余弦值,再通过利用三角函数公式计算得出面积
由于方法1太过复杂,我们着重介绍第二种方法;
第二种方法:
利用海伦公式计算:
示例1:
代码:
#include <stdio.h>
#include<math.h>
int main()
{
int a =0;
int b =0;
int c =0;
scanf("%d %d %d",&a,&b,&c);
float cir =a+b+c;
float d =cir/2.0;
float area =sqrt(d*(d-a)*(d-b)*(d-c));
//sqrt 为开平方函数
printf("circumference=%.2f area=%.2f",cir,area);
return 0;
}
(其中 sqrt函数 的功能是开平方,须引用头文件 "math.h")
更多推荐
已为社区贡献2条内容
所有评论(0)