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

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

TOP

返回列表