水费阶梯定价编程怎么写

时间:2025-01-26 01:36:31 网络游戏

```cpp

include

include

void calculateWaterFee(double quantity) {

double fee;

if (quantity <= 15) {

fee = 4 * quantity / 3;

} else {

fee = 2.5 * quantity - 17.5;

}

std::cout << std::fixed << std::setprecision(2) << fee << std::endl;

}

int main() {

double x;

std::cout << "请输入月用水量(吨): ";

std::cin >> x;

calculateWaterFee(x);

return 0;

}

```

代码解释:

包含头文件

`include `:用于输入输出操作。

`include `:用于设置输出格式,精确到小数点后两位。

函数定义

`void calculateWaterFee(double quantity)`:接受一个`double`类型的参数`quantity`,表示月用水量。

在函数内部,使用`if-else`语句判断用水量是否超过15吨,并计算相应的水费。

如果用水量不超过15吨,水费计算公式为`4 * quantity / 3`。

如果用水量超过15吨,水费计算公式为`2.5 * quantity - 17.5`。

使用`std::cout`和`std::fixed`设置输出格式,输出水费结果。

主函数

`int main()`:程序入口。

提示用户输入月用水量。

调用`calculateWaterFee`函数计算水费并输出结果。

使用示例:

输入:12

输出:16.00

输入:16

输出:22.50

这个程序简单易懂,适合用于计算水费。如果需要更复杂的逻辑或与其他系统集成,可以根据具体需求进行扩展。