C プログラミング言語では、構造体を使用して円の面積、円柱の面積と体積を求めることができます。
s.areacircle = (float)pi*s.radius*s.radius;
s.areacylinder = (float)2*pi*s.radius*s.line + 2 * s.areacircle;
s.volumecylinder = s.areacircle*s.line;
ステップ 1 - 構造体のメンバーを宣言します。
ステップ 2 - 入力変数を宣言して初期化します。
ステップ 3 - 円柱の長さと半径を入力します。
ステップ 4 - 円の面積を計算します。
ステップ 5 - 円柱の面積を計算します。
ステップ 6 - シリンダーの体積を計算します。
例
リアルタイム デモンストレーション
#include<stdio.h> struct shape{ float line; float radius; float areacircle; float areacylinder; float volumecylinder; }; int main(){ struct shape s; float pi = 3.14; //taking the input from user printf("Enter a length of line or height : "); scanf("%f",&s.line); printf("Enter a length of radius : "); scanf("%f",&s.radius); //area of circle s.areacircle = (float)pi*s.radius*s.radius; printf("Area of circular cross-section of cylinder : %.2f</p><p>",s.areacircle); //area of cylinder s.areacylinder = (float)2*pi*s.radius*s.line + 2 * s.areacircle; printf("Surface area of cylinder : %.2f</p><p>", s.areacylinder); //volume of cylinder s.volumecylinder = s.areacircle*s.line; printf("volume of cylinder : %.2f</p><p>", s.volumecylinder); return 0; }
出力
Enter a length of line or height: 34 Enter a length of radius: 2 Area of circular cross-section of cylinder: 12.56 Surface area of cylinder: 452.16 volume of cylinder : 427.04
以上が円と円柱の面積を計算する構造体を使用して書かれた C プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。