返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
  7.   cout<<"~商品價目表~"<<endl;  
  8.   string n[5]={"卡布奇諾   ","濃郁黑咖啡 ","焦糖瑪奇朵 ","黑森林蛋糕  ","原味起司蛋糕",};
  9.   int p[5]={160,210,125,95,65};
  10.   int a,q,sum=0;
  11.   for(int i=0; i<=4; i++)
  12.   {
  13.           cout<<"("<<i+1<<")"<<"  "<<n[i]<<"   "<<p[i]<<endl;
  14.   }
  15.   cout<<"(6)  結帳"<<endl<<endl;
  16.   re:
  17.   cout<<"請輸入商品代碼: ";
  18.   cin>>a;
  19.   if(a>=1 && a<=5)
  20.   {
  21.          cout<<"數量: ";
  22.          cin>>q;
  23.          if(q>=1)      
  24.          {
  25.                 sum=sum+p[a-1]*q;
  26.                 goto re;
  27.          }else
  28.          {
  29.                 cout<<"輸入錯誤!"<<endl;
  30.                 goto re;  
  31.          }
  32.   }else if(a==6)
  33.   {
  34.          goto checkout;
  35.   }else
  36.   {     
  37.          cout<<"輸入錯誤!"<<endl;
  38.          system ("pause");
  39.          goto re;
  40.   }
  41.   checkout:
  42.   cout<<"總共"<<sum<<"元!"<<endl;         
  43.   system ("pause");   
  44.   return 0;   
  45. }
複製代碼

TOP

返回列表