返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int p, q, sum=0;
  7.     string name[7]={"黃金玫瑰",
  8.                     "食人花",
  9.                     "幽靈草",
  10.                     "瘋樹  ",
  11.                     "魔鬼藤蔓",
  12.                     "含兇草",
  13.                     "搖頭樹"};
  14.     int price[7]={7099,1598,2960,1800,4050,3999,6540};
  15.     cout<<"***  special植物專賣店  ***"<<endl<<endl;
  16.     for(int i=0; i<=6; i++)
  17.     {
  18.       cout<<"<"<<i+1<<">"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  19.     }
  20.     cout<<"<8>結帳"<<endl<<endl<<endl;
  21.     re:
  22.     cout<<"請輸入商品代碼: "<<endl;
  23.     cin>>p;
  24.     if(p>=1 && p<=7)
  25.     {
  26.            cout<<"數量: "<<endl;
  27.            cin>>q;
  28.            if(q>=1)
  29.            {
  30.               sum=sum+price[p-1]*9;
  31.               goto re;        
  32.            }
  33.     }
  34.     else if(p==8)
  35.     {
  36.            goto checkout;
  37.     }
  38.     else
  39.     {
  40.            cout<<"輸入錯誤!"<<endl;
  41.            goto re;
  42.     }
  43.     checkout:
  44.              cout<<"總共"<<sum<<"元"<<endl;
  45.     system("pause");
  46.     return 0;
  47. }
複製代碼

TOP

返回列表