返回列表 發帖
本帖最後由 張郁庭 於 2014-2-15 16:41 編輯
  1. #include<iostream>
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.    string name[7]={"冬瓜茶","蘋果冰沙","檸檬愛玉","珍珠奶茶","阿華田","多多綠茶","紅茶"};
  8.    int price[7]={15,30,25,25,25,25,15};
  9.    int p,q,sum=0;
  10.     cout<<"☆★☆ 超級飲料店 ☆★☆"<<endl<<endl;
  11.     cout<<"[商品價目表]"<<endl;
  12.     for(int i=0; i<=6; i++)
  13.     {
  14.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  15.     }
  16.     cout<<"(8)結帳"<<endl<<endl;
  17.     re:
  18.     cout<<"請輸入商品代碼: ";
  19.     cin>>p;
  20.     if(p>=1 && p<=7)
  21.     {
  22.         cout<<"數量: ";
  23.         cin>>q;
  24.         if(q>=0)
  25.         {
  26.             sum=sum+price[p-1]*q;
  27.             goto re;
  28.         }else
  29.         {
  30.             cout<<"輸入錯誤!"<<endl;
  31.             goto re;  
  32.         }
  33.     }else if(p==8)
  34.     {
  35.         goto checkout;      
  36.     }else
  37.     {
  38.         cout<<"輸入錯誤!"<<endl;
  39.         goto re;     
  40.     }
  41.     checkout:
  42.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  43.     system("pause");
  44.     return 0;
  45. }
複製代碼

TOP

返回列表