要用C語言求三角形的面積,可以通過以下步驟:
以下是一個示例程序:
#include <stdio.h>
#include <math.h>
int main() {
float a, b, c, s, area;
printf("請輸入三角形的三條邊長:");
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 0;
}
運行程序后,輸入三角形的三條邊長即可計算出三角形的面積。