返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int count[7]={0,0,0,0,0,0,0};
  7.     int price[7]={790, 870, 110, 230, 950, 770, 375};
  8.     string name[8]={"遙控汽車","飛機模型","足球","拼圖","玩具槍","可愛玩偶","籃球","結帳"};
  9.     cout << "[商品價目表]" << endl;      
  10.     for(int i = 0; i < 7; i++)                                                                              
  11.         cout << "(" << i+1 << ")" << name[i] << "    " << "\t" << price[i] << "元" << endl;
  12.     cout << "(8)" << name[7] <<endl;
  13.     int sum=0;
  14.     int a=0;
  15.     cout << "===============================" << endl;
  16.    
  17.     while(a!=8){
  18.         int c;
  19.         cout << "請輸入商品代碼:";   
  20.         cin >> a;
  21.         if (a==8){
  22.           break;
  23.         } else {
  24.           cout << "數量:";   
  25.           cin >> c;
  26.           sum+=price[a-1]*c;
  27.           count[a-1]+=c;
  28.         }  
  29.     }
  30.     cout << "===============================" << endl;
  31.     cout << "購物清單:" << endl;
  32.     for(int i = 0; i < 7; i++)
  33.     {
  34.         if(count[i] > 0)
  35.         {
  36.              cout << name[i] << "   " << price[i] << "   " << count[i] << endl;
  37.         }
  38.     }
  39.     cout << sum << endl;
  40.     cout << "===============================" << endl;
  41.     system("pause");
  42.     return 0;
  43. }
複製代碼

TOP

返回列表