- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int count[7]={0,0,0,0,0,0,0};
- int price[7]={790, 870, 110, 230, 950, 770, 375};
- string name[8]={"遙控汽車","飛機模型","足球","拼圖","玩具槍","可愛玩偶","籃球","結帳"};
- cout << "[商品價目表]" << endl;
- for(int i = 0; i < 7; i++)
- cout << "(" << i+1 << ")" << name[i] << " " << "\t" << price[i] << "元" << endl;
- cout << "(8)" << name[7] <<endl;
- int sum=0;
- int a=0;
- cout << "===============================" << endl;
-
- while(a!=8){
- int c;
- cout << "請輸入商品代碼:";
- cin >> a;
- if (a==8){
- break;
- } else {
- cout << "數量:";
- cin >> c;
- sum+=price[a-1]*c;
- count[a-1]+=c;
- }
- }
- cout << "===============================" << endl;
- cout << "購物清單:" << endl;
- for(int i = 0; i < 7; i++)
- {
- if(count[i] > 0)
- {
- cout << name[i] << " " << price[i] << " " << count[i] << endl;
- }
- }
- cout << sum << endl;
- cout << "===============================" << endl;
- system("pause");
- return 0;
- }
複製代碼 |