あらゆる図形の表面積は、その表面で覆われた総面積です。
六角柱は、両端が六角形になっている立体図形です。プリズム試験は次のようになります -
数学では、六角柱は 8 つの面、18 の辺、12 の頂点を持つ 3 次元の図形として定義されます。
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 中国語 Web サイトの他の関連記事を参照してください。