首頁 >後端開發 >C++ >計算四面體面積的程序

計算四面體面積的程序

WBOY
WBOY轉載
2023-09-08 09:25:01607瀏覽

計算四面體面積的程序

四面體是具有三角形底面的金字塔,即它的底面是三角形,每條邊都有一個三角形。三個三角形全部匯聚到一點。如圖,

四面體面積= (√3)a2

計算四面體面積的程序

#範例

找出四面體面積的程式碼使用數學函式庫來找出數字的平方和平方根,使用sqrt 和pow 方法。為了計算面積,我們採用一個浮點數,並給出表達式「((sqrt(3)*a*a))」的值。

#include <stdio.h>
#include <math.h>
int main() {
   int a= 5;
   float area, volume;
   printf("Program to find area and volume of Tetrahedron</p><p>");
   printf("The side of Tetrahedron is %d </p><p>", a);
   area = (sqrt(3)*(a * a));
   printf("The area of Tetrahedron is %f </p><p>", area);
   return 0;
}

輸出

Program to find area and volume of Tetrahedron
The side of Tetrahedron is 5
The area of Tetrahedron is 43.301270

以上是計算四面體面積的程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除