用c语言,输入三角形的边长,求其三角形的面积(保留2位小数)
时间: 2023-04-02 10:05:15 浏览: 84
用C语言来求三角形面积
你好,根据你的问题,我可以回答。以下是用 C 语言计算三角形面积的代码:
```
#include <stdio.h>
#include <math.h>
int main()
{
float a, b, c, s, area;
printf("请输入三角形的三条边长:\n");
scanf("%f %f %f", &a, &b, &c);
s = (a + b + c) / 2;
area = sqrt(s * (s - a) * (s - b) * (s - c));
printf("三角形的面积为:%.2f\n", area);
return ;
}
```
希望能对你有所帮助。
阅读全文