c语言设计圆柱体算法
时间: 2024-06-02 13:05:43 浏览: 224
C#绘制圆柱体
5星 · 资源好评率100%
C语言可以通过数学公式来计算圆柱体的体积和表面积。圆柱体的体积公式为πr²h,表面积公式为2πrh+2πr²,其中r是圆柱体底面半径,h是圆柱体高度。
以下是一个C语言计算圆柱体体积和表面积的示例代码:
```c
#include <stdio.h>
#include <math.h>
int main()
{
float radius, height, volume, surface_area;
const float PI = 3.14159;
printf("请输入圆柱体的底面半径:");
scanf("%f", &radius);
printf("请输入圆柱体的高度:");
scanf("%f", &height);
volume = PI * pow(radius, 2) * height;
surface_area = 2 * PI * radius * height + 2 * PI * pow(radius, 2);
printf("圆柱体的体积为:%f\n", volume);
printf("圆柱体的表面积为:%f\n", surface_area);
return 0;
}
```
阅读全文