c语言,输入三角形三个边,利用海伦公式计算三角形的面积并输出,保留小数点后俩位
时间: 2024-05-03 08:23:04 浏览: 95
用c语言求三角形的面积
```c
#include <stdio.h>
#include <math.h>
int main() {
double a, b, c;
double s, area;
scanf("%lf %lf %lf", &a, &b, &c);
s = (a + b + c) / 2;
area = sqrt(s * (s - a) * (s - b) * (s - c));
printf("%.2lf", area);
return 0;
}
```
阅读全文