返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     start:
  7.     string name[7]={"超級瑪利歐","坦克大戰","決勝時刻10","戰地風雲4",
  8.                     "炸彈人","變形金剛","榮譽勳章"};   
  9.     int price[7]={120,110,1900,1450,100,599,399};     
  10.     int qty[7]={0,0,0,0,0,0,0};         
  11.     int p,q,sum=0;  
  12.     int option;
  13.     int pay,money;   
  14.     cout<<"無敵電玩店"<<endl<<endl;
  15.     cout<<"[商品價目表]"<<endl;
  16.     for(int i=0; i<=6; i++)
  17.      {
  18.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  19.     }
  20.     cout<<"(8)結帳"<<endl<<endl;
  21.     re:
  22.     cout<<"輸入商品代碼: ";
  23.     cin>>p;
  24.     if(p>=1 && p<=7)
  25.     {
  26.         cout<<"你要的數量: ";
  27.         cin>>q;
  28.         if(q>0)
  29.         {
  30.             sum+=price[p-1]*q;   
  31.             qty[p-1]+=q;         
  32.             goto re;
  33.         }else
  34.         {
  35.             cout<<"Error"<<endl;
  36.             goto re;  
  37.         }
  38.     }else if(p==8)
  39.     {
  40.         goto checkout;      
  41.     }else
  42.     {
  43.         cout<<"Error"<<endl;
  44.         goto re;     
  45.     }
  46.     checkout:
  47.     cout<<endl<<"[購物清單]"<<endl;
  48.     cout<<"============================="<<endl;
  49.     for(int i=0; i<=6; i++)
  50.     {
  51.         if(qty[i]!=0)   
  52.             cout<<name[i]<<"\t"<<price[i]<<"元 * "<<qty[i]<<"個"<<endl;      
  53.     }
  54.     cout<<"============================="<<endl;
  55.     cout<<"共 "<<sum<<"元"<<endl<<endl;
  56.     cout<<"1-正確 2-重新選購";
  57.     cin>> option;
  58.     if(option==1)
  59.     {
  60.         go to pay;            
  61.     }else if (option==2)
  62.     {
  63.         system ("cls");
  64.         go to start;  
  65.     }
  66.     pay:
  67.     cout<<endl<<"請輸入你付的金額:";
  68.     cin>>pay;
  69.     money=pay-sum;
  70.     if (money==0)
  71.     {
  72.         cout"剛好!慢走"<<endl;            
  73.     }else if (money<0)
  74.     {
  75.         cout<<"不夠!"<<-money<<"元!"endl;
  76.         go to pay;  
  77.     }else
  78.        {
  79.            cout<<"找你"<<money<<"元"<<endl;
  80.        if(money>=100)
  81.        {
  82.            cout<<"千元鈔票"<<money/1000<<"張"<<endl;
  83.            money=money%1000;              
  84.        }   
  85.        if(money>=500)
  86.        {
  87.            cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  88.            money=money%500;              
  89.        }
  90.        if(money>=100)
  91.        {
  92.            cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  93.            money=money%100;              
  94.        }
  95.        if(money>=50)
  96.        {
  97.            cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  98.            money=money%50;              
  99.        }
  100.        if(money>=10)
  101.        {
  102.            cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  103.            money=money%10;              
  104.        }
  105.        if(money>=1)
  106.        {
  107.            cout<<"一元硬幣"<<money/1<<"枚"<<endl;              
  108.        }
  109.     }
  110.     system("pause");
  111.     return 0;
  112. }
複製代碼

TOP

返回列表