返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   int p,q,sum=0;
  7.   string name[5]={"乒乓球",
  8.                   "棒球  ",
  9.                   "足球  ",
  10.                   "躲避球",
  11.                   "籃球  "};
  12.   int money[5]={50,100,125,200,600};
  13.   cout<<"~~~超酷球店~~~"<<endl<<endl;
  14.   cout<<"(商品價目表)"<<endl;  
  15.   
  16.   for(int i=0; i<=4; i++)
  17.   {
  18.       cout<<"("<<i+1<<")"<<name[i]<<"\t"<<money[i]<<"元"<<endl;
  19.   }
  20.   cout<<"(6)結帳"<<endl<<endl;
  21.   re:
  22.   cout<<"請輸入商品代碼: ";
  23.   cin>>p;
  24.     if(p>=1 && p<=5)
  25.     {
  26.         cout<<"數量: ";
  27.         cin>>q;
  28.         if(q>0)
  29.         {
  30.             sum=sum+money[p-1]*q;
  31.             goto re;
  32.         }else
  33.         {
  34.             cout<<"輸入錯誤!"<<endl;
  35.             goto re;  
  36.         }
  37.     }else if(p==6)
  38.     {
  39.         goto checkout;      
  40.     }else
  41.     {
  42.         cout<<"輸入錯誤!"<<endl;
  43.         goto re;     
  44.     }
  45.     checkout:
  46.     cout<<"總共"<<sum<<"元"<<endl<<endl;
  47.     system("pause");
  48.     return 0;

  49. }
複製代碼

TOP

返回列表