返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[8]={"windows 10","windows 7","windows 8","windows 8.1","windows XP","windows 10","office 全部版本","結帳"};
  7.     int inventory[7]={0,0,0,0,0,0,0};
  8.     int money[7]={2000,5000,1000,10000,20,1150,1022225};            
  9.     int commodity,quantity,checkout=0;
  10.     cout<<"微軟專賣店"<<endl;
  11.     cout<<"[價目表]"<<endl;
  12.     for(int i=0; i<=6; i++)
  13.     {
  14.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<money[i]<<"元"<<endl;            
  15.     }
  16.     cout<<"("<<"8"<<")"<<name[7]<<endl;
  17.     while(commodity!=8)
  18.     {
  19.          cout<<"請輸入想要買的商品號碼(結帳請按8):";               
  20.          cin>>commodity;
  21.          if(commodity==8)   
  22.              break;
  23.          cout<<"請輸入要購的數量:";
  24.          cin>>quantity;
  25.          inventory[commodity-1]+=quantity;
  26.          checkout+=quantity*money[commodity-1];
  27.     }
  28.     cout<<"買物清單"<<endl;
  29.     cout<<"-----------------------------------"<<endl;
  30.     for(int i=0;i<=6;i++)
  31.     {
  32.          if(inventory[i]!=0)        
  33.          {   
  34.              cout<<name[i]<<"\t";
  35.              cout<<money[i]<<"\t元 * ";
  36.              cout<<inventory[i]<<endl;
  37.          }
  38.     }
  39.     if(checkout==0)
  40.         cout<<"\t(空白)"<<endl;
  41.     cout<<"-----------------------------------"<<endl;
  42.     cout<<"一共要付"<<checkout+300<<"元!(300塊運費)"<<endl;
  43.     system("pause");
  44.     return 0;   
  45. }
複製代碼

TOP

返回列表