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