返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[7]={"遙控飛機",
  7.                     "水槍    ",
  8.                     "玩偶    ",
  9.                     "足球    ",
  10.                     "拼圖    ",
  11.                     "籃球    ",
  12.                     "玩具車"};
  13.     int price[7]={50000,6500000,70000,655000,999999,300000,750000,};
  14.     int qty[7]={0,0,0,0,0,0,0};
  15.     int p,q,sum=0,a,money;
  16.     cout<<"***貴死人玩具店***"<<endl<<endl;
  17.     cout<<"[商品價目表]"<<endl;
  18.     for(int i=0;i<=6;i++)
  19.     {
  20.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;   
  21.     }
  22.     cout<<"(8)結帳"<<endl;
  23.     re:
  24.     cout<<"請輸入商品代碼:"<<endl;
  25.     cin>>p;
  26.     if(p>=1 && p<=7)
  27.     {   
  28.          cout<<"請輸入數量:"<<endl;
  29.          cin>>q;
  30.          if(q>0)
  31.          {
  32.              sum+=price[p-1]*q;
  33.              qty[p-1]+=q;
  34.              goto re;
  35.          }
  36.          else  
  37.          {
  38.              cout<<"輸入錯誤!"<<endl;
  39.              goto re;   
  40.          }
  41.     }
  42.     else if(p==8)
  43.     {
  44.          goto checkout;   
  45.     }
  46.     else
  47.     {
  48.          cout<<"輸入錯誤!"<<endl;
  49.          goto re;
  50.     }
  51.     checkout:
  52.     cout<<"[購物清單]"<<endl;
  53.     cout<<"==========================="<<endl;
  54.     for(int i=0;i<=6;i++)
  55.     {
  56.         if(qty[i]!=0)
  57.             cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元*"<<qty[i]<<"個"<<endl;   
  58.     }
  59.     cout<<"==========================="<<endl;         
  60.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  61.     re2:
  62.     cout<<"1-正確無誤 2-重新選購"<<endl;
  63.     cin>>a;
  64.     if(a==1)
  65.     {
  66.         money+=sum;
  67.         if(money>=500)
  68.         {
  69.             cout<<"500元鈔票"<<money/500<<"張"<<endl;
  70.         money=money%500;
  71.         }
  72.         if(money>=100)
  73.         {
  74.             cout<<"100元鈔票"<<money/100<<"張"<<endl;
  75.         money=money%100;
  76.         }
  77.         if(money>=50)
  78.         {
  79.             cout<<"50元硬幣"<<money/50<<"枚"<<endl;
  80.         money=money%50;
  81.         }
  82.         if(money>=10)
  83.         {
  84.             cout<<"10元硬幣"<<money/10<<"枚"<<endl;
  85.         money=money%10;
  86.         }
  87.         if(money>=5)
  88.         {
  89.             cout<<"5元硬幣"<<money/5<<"枚"<<endl;
  90.         money=money%5;
  91.         }
  92.         if(money>=1)
  93.         {
  94.             cout<<"1元硬幣"<<money/1<<"枚"<<endl;
  95.         money=money%1;
  96.         }
  97.     }
  98.     else if(a==2)
  99.     {
  100.     goto re;     
  101.     }
  102.     else
  103.     {
  104.     cout<<"輸入錯誤!"<<endl;
  105.     goto re2;   
  106.     }            
  107.     system("pause");
  108.     return 0;   
  109. }
複製代碼

TOP

返回列表