c++定义一个有5个元素的数组,用来保存5种商品的价格,并输出5种商品的总价格
时间: 2024-02-25 16:54:50 浏览: 106
关于C++数组
好的,以下是定义一个有5个元素的数组,保存5种商品价格的C++代码示例:
```cpp
#include <iostream>
using namespace std;
int main(){
int prices[5] = {10, 20, 30, 40, 50}; // 定义一个有5个元素的数组,保存5种商品的价格
int total_price = 0; // 初始化总价为0
// 计算5种商品的总价
for(int i = 0; i < 5; i++){
total_price += prices[i];
}
// 输出5种商品的总价
cout << "5种商品的总价为:" << total_price << endl;
return 0;
}
```
运行结果为:
```
5种商品的总价为:150
```
请注意,以上代码是使用C++语言编写的,其他编程语言的实现方式可能会略有不同。
阅读全文