在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 - 计算圆柱体的体积。
示例
以下是使用结构体来计算圆和圆柱体的面积以及其他参数的C程序 -
实时演示
#include
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
",s.areacircle);
//area of cylinder
s.areacylinder = (float)2*pi*s.radius*s.line + 2 * s.areacircle;
printf("Surface area of cylinder : %.2f
", s.areacylinder);
//volume of cylinder
s.volumecylinder = s.areacircle*s.line;
printf("volume of cylinder : %.2f
", 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程序,用于计算圆和圆柱体的面积的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!