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
#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위 프로그램을 실행하면 다음과 같은 출력이 나옵니다. −
위 내용은 원과 원통의 면적을 계산하기 위해 구조를 사용하여 작성된 C 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!