已知三角形的三邊,求三角形的面積

小程序示例:web float area(float a, float b, float c) { float t, s; t = (a + b + c) / 2; s = (float)sqrt(t*(t - a)*(t - b)*(t - c)); //求得面積 return s; //
相關文章
相關標籤/搜索