返回列表 發帖
  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 p,q,sum=0;            
  23.     for(int i=0; i<=6; i++)
  24.     {
  25.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  26.     }
  27.     cout<<"(8)結帳"<<endl<<endl;
  28.     re:
  29.     cout<<"請輸入商品代碼: ";
  30.     cin>>p;
  31.     if(p>=1 && p<=7)
  32.     {
  33.         cout<<"數量: ";
  34.         cin>>q;
  35.         if(q>0)
  36.         {
  37.             sum=sum+price[p-1]*q;
  38.             goto re;
  39.         }else
  40.         {
  41.             cout<<"輸入錯誤!"<<endl;
  42.             goto re;  
  43.         }
  44.     }else if(p==8)
  45.     {
  46.         goto checkout;      
  47.     }else
  48.     {
  49.         cout<<"輸入錯誤!"<<endl;
  50.         goto re;     
  51.     }
  52.     checkout:
  53.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  54.     system("pause");
  55.     return 0;
  56. }
複製代碼

TOP

返回列表