用c语言唱着编写程序 一个三角形的三边长分别是a、b、c,那么它的面积为 √p(p-a)(p-b)(p-c),其中p=号(a+b+c)。输入这三个数字,计算三角形的面积,四舍五入精确到1位小数。
时间: 2023-05-13 10:04:43 浏览: 166
c++用函数写输入三边——判断三角形形状并计算面积周长
5星 · 资源好评率100%
以下是用 C 语言编写的计算三角形面积的程序:
```c
#include <stdio.h>
#include <math.h>
int main() {
double a, b, c, p, area;
printf("请输入三角形的三边长:\n");
scanf("%lf %lf %lf", &a, &b, &c);
p = (a + b + c) / 2;
area = sqrt(p * (p - a) * (p - b) * (p - c));
printf("三角形的面积为:%.1lf\n", area);
return 0;
}
```
输入三边长后,程序会计算出三角形的面积并输出,精确到小数点后一位。
阅读全文