用c++代码编写程序,假设圆柱体的高是一个固定值,则体积的大小完全由半径来调整。请定义一个Cylinder
时间: 2023-06-05 17:08:50 浏览: 80
结构体,包括高和半径两个成员变量,并且定义一个函数来计算圆柱体的体积。
下面是示例代码:
```c
#include <stdio.h>
struct Cylinder {
double height;
double radius;
};
double calculateVolume(struct Cylinder c) {
return 3.14159 * c.radius * c.radius * c.height;
}
int main() {
struct Cylinder c = { 10.0, 5.0 };
double volume = calculateVolume(c);
printf("Cylinder volume is %f\n", volume);
return 0;
}
```
阅读全文