输入代码c语言一圆形游泳池如图所示,现需要在其周围建一圆形过道,并在其四周围上栅栏。栅栏价格为35元/米,过道造价为20元/平方米。游泳池半径和过道宽度由键盘输入。要求计算并输出过道和栅栏的造价
时间: 2024-03-10 20:46:23 浏览: 135
计算方法c语言代码
以下是C语言代码实现:
```c
#include <stdio.h>
#include <math.h>
int main() {
float r, w, r1, area1, circumference, fence_cost;
const float PI = 3.1415926;
// 输入游泳池半径和过道宽度
printf("请输入游泳池的半径:");
scanf("%f", &r);
printf("请输入过道的宽度:");
scanf("%f", &w);
// 计算过道半径和面积
r1 = r + w;
area1 = PI * (pow(r1, 2) - pow(r, 2));
// 计算栅栏周长和造价
circumference = 2 * PI * r1;
fence_cost = circumference * 35;
// 输出结果
printf("过道的造价为:%f 元\n", area1 * 20);
printf("栅栏的造价为:%f 元\n", fence_cost);
return 0;
}
```
这个程序中,我们首先定义了圆周率PI,然后从用户输入游泳池半径和过道宽度。接下来,我们使用这些值计算过道的半径和面积,以及栅栏周长和造价。最后,我们打印出过道和栅栏的造价。
阅读全文