题解(A30707.计算书费)
2024-11-16 16:08:24
发布于:四川
2阅读
0回复
0点赞
#include <iostream>
#include <iomanip> // 用于控制输出格式
int main() {
// 定义图书单价数组
double prices[] = {28.9, 32.7, 45.6, 78.0, 35.0, 86.2, 27.8, 43.0, 56.0, 65.0};
// 定义购买数量数组
int quantities[10];
// 读取输入
for (int i = 0; i < 10; ++i) {
std::cin >> quantities[i];
}
// 计算总费用
double total_cost = 0.0;
for (int i = 0; i < 10; ++i) {
total_cost += quantities[i] * prices[i];
}
std::cout << std::fixed << std::setprecision(1) << total_cost << std::endl;
return 0;
}
这里空空如也
有帮助,赞一个