>  기사  >  백엔드 개발  >  원과 원통의 면적을 계산하기 위해 구조를 사용하여 작성된 C 프로그램

원과 원통의 면적을 계산하기 위해 구조를 사용하여 작성된 C 프로그램

PHPz
PHPz앞으로
2023-08-29 21:41:10945검색

원과 원통의 면적을 계산하기 위해 구조를 사용하여 작성된 C 프로그램

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;
    Algorithm
구조를 사용하여 원과 원통의 면적과 기타 매개변수를 계산하려면 아래 알고리즘을 참조하세요.

1단계 - 구조체 멤버를 선언합니다.

2단계 - 입력 변수를 선언하고 초기화합니다.

3단계 - 원통의 길이와 반경을 입력합니다.

4단계 - 원의 면적을 계산합니다.

5단계 - 원통의 면적을 계산합니다.

6단계 - 실린더의 부피를 계산합니다.

예제

다음은 구조를 이용하여 원과 원기둥의 면적, 기타 매개변수를 계산하는 C 프로그램입니다. -

실시간 데모

#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;
}

Output

위 프로그램을 실행하면 다음과 같은 출력이 나옵니다. −

rreee

위 내용은 원과 원통의 면적을 계산하기 위해 구조를 사용하여 작성된 C 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제