Cプログラミング
 Computer >> コンピューター >  >> プログラミング >> Cプログラミング

Cプログラミング言語を使用して球の体積を計算するにはどうすればよいですか?


球の体積は、形状の容量に他なりません。

球の公式の体積は-

です

$$ V \:=\:\ frac {4} {3} \ Pi \:r ^ {3} $$

アルゴリズム

Step 1: Enter radius of sphere at runtime
Step 2: Apply the formula to variable
        Volume=(4/3)*3.14*rad*rad*rad
Step 3: print the volume
Step 4: stop

プログラム1

#include<stdio.h>
int main(){
   float vol;
   int rad;
   rad=20;
   vol=((4.0f/3.0f) * (3.1415) * rad * rad * rad);
   printf("the volume of a sphere is %f\n",vol);
   return 0;
}

出力

the volume of a sphere is 33509.335938

プログラム2

以下は、球の体積と表面積を見つける例です-

#include <stdio.h>
#include <math.h>
int main(){
   float rad;
   float area, vol;
   printf("Enter radius of the sphere : \n");
   scanf("%f", &rad);
   area = 4 * (22/7) * rad * rad;
   vol = (4.0/3) * (22/7) * rad * rad * rad;
   printf("Surface area of sphere is: %.3f", area);
   printf("\n Volume of sphere is : %.3f", vol);
   return 0;
}

出力

Enter radius of the sphere :
4
Surface area of sphere is: 192.000
Volume of sphere is : 256.000

  1. C言語を使用して挿入ソートを説明します。

    並べ替えは、要素を昇順(または)降順で並べ替えるプロセスです。 並べ替えの種類 C言語には、次の5つの並べ替え手法があります- バブルソート(または)Exchangeソート 選択ソート 挿入ソート(または)線形ソート クイックソート(または)パーティション交換ソート マージソート(または)外部ソート 挿入ソート 挿入ソート手法を使用して要素をソートするために使用されるロジックは次のとおりです- for(i = 1; i <= n - 1; i++){    for(j = i; j > 0 && a[j - 1] > a[j]; j

  2. C ++を使用してOpenCVの画像のチャンネル数を計算するにはどうすればよいですか?

    このトピックでは、画像のチャンネル数を確認する方法を理解します。プログラムを実行すると、チャンネル番号がコンソールウィンドウに表示されます。 チャネルの番号を取得するために、channels()という名前のOpenCVのクラスを使用しました。 クラスchannels()のオブジェクトとして画像マトリックスを渡すと、チャネルに整数値が与えられます。 次のプログラムは、チャネルの数をカウントし、コンソールウィンドウに表示します。 例 #include<iostream> #include<opencv2/highgui/highgui.hpp> using namesp