回覆列表
-
1 # 現在答題全靠運氣的
-
2 # 阡白陌雪
#include<stdio.h>
#include<math.h>
int main()
{
double a, b, c, p, s;
printf("請輸入三角形的三邊長:");
scanf("%lf%lf%lf", &a, &b, &c);
p = (a+b+c)/2;
s = sqrt( p*(p-a)*(p-b)*(p-c));
printf("%.3f\n", s);
return 0;
}
#include<stdio.h>
#include<math.h>
int main()
{
double a, b, c, p, s;
printf("請輸入三角形的三邊長:");
scanf("%lf%lf%lf", &a, &b, &c);
p = (a+b+c)/2;
s = sqrt( p*(p-a)*(p-b)*(p-c));
printf("%.3f\n", s);
return 0;
}