返回列表 發帖
  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

返回列表