用C语言输入圆柱体的半径和高,求圆柱体的表面积和体积
时间: 2023-09-29 13:03:27 浏览: 260
```c
#include <stdio.h>
int main() {
float radius, height, surface_area, volume;
const float pi = 3.1415926;
printf("Enter the radius of the cylinder: ");
scanf("%f", &radius);
printf("Enter the height of the cylinder: ");
scanf("%f", &height);
surface_area = 2 * pi * radius * height + 2 * pi * radius * radius;
volume = pi * radius * radius * height;
printf("The surface area of the cylinder is: %f\n", surface_area);
printf("The volume of the cylinder is: %f\n", volume);
return 0;
}
```
说明:
- 定义了 `radius`、`height`、`surface_area` 和 `volume` 四个变量,分别表示圆柱体的半径、高、表面积和体积。
- 定义了常量 `pi`,用于存储圆周率的值。
- 使用 `printf` 和 `scanf` 分别输入和输出数据。
- 根据圆柱体的公式,计算出圆柱体的表面积和体积。
- 使用 `printf` 输出结果。
阅读全文