返回列表 發帖
本帖最後由 蔡庭豪 於 2016-4-30 11:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int number[7]={450,550,325,200,660,150,380};
  7.     int count[7]={0,0,0,0,0,0,0};
  8.     string name[8]={"遙控汽車 ","飛機模型 ","足球   ","拼圖   ","玩具gun","可愛玩偶 ","籃球   ","結帳"};
  9.     cout<<"======================================"<<endl;
  10.     cout<<"===智障玩具店========================="<<endl;     
  11.     cout<<"......................................"<<endl;
  12.     cout<<"===商品價目表========================="<<endl;
  13.     for(int i=0;i<7;i++)
  14.         {
  15.         cout<<"("<<i+1<<")"<<name[i]<<"\t";
  16.              if(i!=7)
  17.              {      
  18.              cout<<number[i]<<"元"<<endl;
  19.              }
  20.         }
  21.     int sum = 0;
  22.     while(true)
  23.     {
  24.            int x=0,y=0;
  25.            cout<<"請輸入代碼(按8結帳):";
  26.            cin>>x;
  27.            if(x==8)
  28.            {           
  29.                   break;
  30.            }
  31.            else
  32.            {      cout<<"請輸入數量:";           
  33.                   cin>>y;
  34.                   count[x-1]+=y;
  35.                   sum+=number[x-1]*y;                 
  36.            }
  37.            
  38.     }      
  39.     cout<<"[購物清單]"<<endl;
  40.     cout<<"---------------------------------"<<endl;
  41.     for(int i=0;i<7;i++)
  42.     {
  43.            if(count[i]!=0)
  44.            {
  45.               cout<<name[i]<<"     "<<number[i]<<"*"<<count[i]<<"="<<number[i]*count[i]<<endl;   
  46.            }
  47.     }
  48.     cout<<"---------------------------------"<<endl;
  49.     cout<<"總共"<<sum<<"元"<<endl;      
  50.     system("pause");
  51.     return 0;   
  52. }
複製代碼

TOP

返回列表