首頁 > 後端開發 > C++ > 主體

六角柱的表面積和體積在C編程中的計算

王林
發布: 2023-09-14 09:45:03
轉載
701 人瀏覽過

六角柱的表面積和體積在C編程中的計算

任何圖形的表面積都是其表面覆蓋的總面積。

六角角柱是兩端都有六邊形的立體圖形。棱柱考試看起來像 -

在數學中,六角棱柱被定義為具有 8 個面、18 個邊、12 個頂點的三維圖形。

六角柱的表面積和體積在C編程中的計算

Surface Area = 3ah + 3√3*(a2)
Volume = (3√3/2)a2h
登入後複製

範例

#include <stdio.h>
#include<math.h>
int main() {
   float a = 5, h = 10;
   //Logic to find the area of hexagonal prism
   float Area;
   Area = 6 * a * h + 3 * sqrt(3) * a * a;
   printf("Surface Area: %f</p><p>",Area);
   //Logic to find the Volume of hexagonal prism
   float Volume;
   Volume = 3 * sqrt(3) * a * a * h / 2;
   printf("Volume: %f</p><p>",Volume);
   return 0;
}
登入後複製

輸出

Surface Area: 429.903809
Volume: 649.519043
登入後複製

以上是六角柱的表面積和體積在C編程中的計算的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板