返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     start:
  7.    cout<<"***Legend's Sports Store***"<<endl;
  8.   cout<<"The Price LIST"<<endl;
  9.   string name[7]={"Rose4                 ",
  10.                  "NIKE Ambassader  ",
  11.                  "JORDAN FLIGHT    ",
  12.                  "ADIfast         ",
  13.                  "adizero crazy light  ",
  14.                  "NIKE hyperdunk 2013  ",
  15.                  "ADIZERO CRAZY QUICK"  };
  16.   int price[7]={4500,
  17.                 3950,
  18.                 2400,
  19.                 2780,
  20.                 2950,
  21.                 2495,
  22.                 2154};
  23.   int qty[7]={0,0,0,0,0,0,0};
  24.      int p,q,sum=0,a,option,money,pay;            
  25.     for(int i=0; i<=6; i++)
  26.     {
  27.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  28.     }
  29.     cout<<"(8)結帳"<<endl<<endl;
  30.     cout<<"消費滿5000,送您城市球衣乙件"<<endl;
  31.     re:
  32.     cout<<"請輸入商品代碼: ";
  33.     cin>>p;
  34.     if(p>=1 && p<=7)
  35.     {
  36.         cout<<"數量: ";
  37.         cin>>q;
  38.         if(q>0)
  39.         {
  40.             sum=sum+price[p-1]*q;
  41.             qty[p-1]=qty[p-1]+q;
  42.             goto re;
  43.         }else
  44.         {
  45.             cout<<"輸入錯誤!"<<endl;
  46.             goto re;  
  47.         }
  48.     }else if(p==8)
  49.     {
  50.         goto checkout;      
  51.     }else
  52.     {
  53.         cout<<"輸入錯誤!"<<endl;
  54.         goto re;     
  55.     }
  56.     checkout:   
  57.     cout<<"購物清單"<<endl;
  58.     cout<<"------------------"<<endl;
  59.     for(int i=0; i<=6; i++)
  60.     {
  61.           if(qty[i]!=0)  
  62.         cout<<name[i]<<"\t"<<price[i]<<"*"<<qty[i]<<"個"<<endl;     
  63.     }
  64.     cout<<"------------------"<<endl;
  65.      cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  66.      if(sum>=5000)
  67.      cout<<"免費獲得城市球衣一件,加100元升級聖誕特別版喔!!"<<endl;
  68.      cout<<"1-正確無誤 2-重新選購";
  69.      cin>>option;
  70.      if(option==1)
  71.      {
  72.       goto pay;           
  73.      }else if(option==2)
  74.      {
  75.       system("cls");
  76.       goto start;     
  77.      }else
  78.     {
  79.          cout<<"輸入錯誤!"<<endl;
  80.          goto start;
  81.     }
  82.     pay:
  83.     cout<<endl<<"請付帳: ";
  84.     cin>>pay;
  85.     money=pay-sum;
  86.     if(money==0)
  87.     {
  88.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  89.     }else if(money<0)
  90.     {
  91.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  92.         goto pay;   
  93.     }else
  94.     {
  95.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  96.         if(money>=500)
  97.         {
  98.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  99.             money%=500;    //money=money%500;              
  100.         }
  101.         if(money>=100)
  102.         {
  103.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  104.             money%=100;              
  105.         }
  106.         if(money>=50)
  107.         {
  108.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  109.             money%=50;              
  110.         }
  111.         if(money>=10)
  112.         {
  113.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  114.             money%=10;              
  115.         }
  116.         if(money>=5)
  117.         {
  118.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  119.             money%=5;              
  120.         }
  121.         if(money>=1)
  122.         {
  123.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  124.         }      
  125.     }
  126.    
  127.     system("pause");
  128.     return 0;
  129. }
複製代碼

TOP

返回列表