J


私信TA

用户名:dotcpp0779769

访问量:1022

签 名:

等  级
排  名 7616
经  验 1292
参赛次数 0
文章发表 13
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<stdio.h>
#include<math.h>
double distance(float x1, float y1, float x2, float y2)
 {
      double L = sqrt(pow((x1-x2),2) + pow((y1-y2),2));
      return L;
 }
int main()
{
float x1,x2,x3,y1,y2,y3;
double a,b,c,s,p;
scanf("%f %f %f %f %f %f",&x1,&y1,&x2,&y2,&x3,&y3);
a = distance(x1, y1, x2, y2);
b = distance(x1, y1, x3, y3);
c = distance(x2, y2, x3, y3);
p=(a+b+c)/2;
s = sqrt(p*(p-a)*(p-b)*(p-c));//海伦公式 
printf("%.2lf\n",s);
return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »