返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"***Legend's Sports Store***"<<endl;
  7.   cout<<"The Price LIST"<<endl;
  8.   string name[7]={"Rose4                 ",
  9.                  "NIKE Ambassader  ",
  10.                  "JORDAN FLIGHT    ",
  11.                  "ADIfast         ",
  12.                  "adizero crazy light  ",
  13.                  "NIKE hyperdunk 2013  ",
  14.                  "ADIZERO CRAZY QUICK"  };
  15.   int price[7]={4500,
  16.                 3950,
  17.                 2400,
  18.                 2780,
  19.                 2950,
  20.                 2495,
  21.                 2154};
  22.   int qty[7]={0,0,0,0,0,0,0};
  23.      int p,q,sum=0,a;            
  24.     for(int i=0; i<=6; i++)
  25.     {
  26.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  27.     }
  28.     cout<<"(8)結帳"<<endl<<endl;
  29.     re:
  30.     cout<<"請輸入商品代碼: ";
  31.     cin>>p;
  32.     if(p>=1 && p<=7)
  33.     {
  34.         cout<<"數量: ";
  35.         cin>>q;
  36.         if(q>0)
  37.         {
  38.             sum=sum+price[p-1]*q;
  39.             qty[p-1]=qty[p-1]+q;
  40.             goto re;
  41.         }else
  42.         {
  43.             cout<<"輸入錯誤!"<<endl;
  44.             goto re;  
  45.         }
  46.     }else if(p==8)
  47.     {
  48.         goto checkout;      
  49.     }else
  50.     {
  51.         cout<<"輸入錯誤!"<<endl;
  52.         goto re;     
  53.     }
  54.     checkout:   
  55.     cout<<"購物清單"<<endl;
  56.     cout<<"------------------"<<endl;
  57.     for(int i=0; i<=6; i++)
  58.     {
  59.           if(qty[i]!=0)  
  60.         cout<<name[i]<<"\t"<<price[i]<<"*"<<qty[i]<<"個"<<endl;     
  61.     }
  62.     cout<<"------------------"<<endl;
  63.      cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  64.    
  65.     system("pause");
  66.     return 0;
  67. }
複製代碼

TOP

  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.     re:
  31.     cout<<"請輸入商品代碼: ";
  32.     cin>>p;
  33.     if(p>=1 && p<=7)
  34.     {
  35.         cout<<"數量: ";
  36.         cin>>q;
  37.         if(q>0)
  38.         {
  39.             sum=sum+price[p-1]*q;
  40.             qty[p-1]=qty[p-1]+q;
  41.             goto re;
  42.         }else
  43.         {
  44.             cout<<"輸入錯誤!"<<endl;
  45.             goto re;  
  46.         }
  47.     }else if(p==8)
  48.     {
  49.         goto checkout;      
  50.     }else
  51.     {
  52.         cout<<"輸入錯誤!"<<endl;
  53.         goto re;     
  54.     }
  55.     checkout:   
  56.     cout<<"購物清單"<<endl;
  57.     cout<<"------------------"<<endl;
  58.     for(int i=0; i<=6; i++)
  59.     {
  60.           if(qty[i]!=0)  
  61.         cout<<name[i]<<"\t"<<price[i]<<"*"<<qty[i]<<"個"<<endl;     
  62.     }
  63.     cout<<"------------------"<<endl;
  64.      cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  65.      cout<<"1-正確無誤 2-重新選購";
  66.      cin>>option;
  67.      if(option==1)
  68.      {
  69.       goto pay;           
  70.      }else if(option==2)
  71.      {
  72.       system("cls");
  73.       goto start;     
  74.      }else
  75.     {
  76.          cout<<"輸入錯誤!"<<endl;
  77.          goto start;
  78.     }
  79.     pay:
  80.     cout<<endl<<"請付帳: ";
  81.     cin>>pay;
  82.     money=pay-sum;
  83.     if(money==0)
  84.     {
  85.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  86.     }else if(money<0)
  87.     {
  88.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  89.         goto pay;   
  90.     }else
  91.     {
  92.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  93.         if(money>=500)
  94.         {
  95.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  96.             money%=500;    //money=money%500;              
  97.         }
  98.         if(money>=100)
  99.         {
  100.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  101.             money%=100;              
  102.         }
  103.         if(money>=50)
  104.         {
  105.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  106.             money%=50;              
  107.         }
  108.         if(money>=10)
  109.         {
  110.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  111.             money%=10;              
  112.         }
  113.         if(money>=5)
  114.         {
  115.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  116.             money%=5;              
  117.         }
  118.         if(money>=1)
  119.         {
  120.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  121.         }      
  122.     }
  123.    
  124.     system("pause");
  125.     return 0;
  126. }
複製代碼

TOP

返回列表