- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int p, q, sum=0;
- string name[7]={"黃金玫瑰",
- "食人花",
- "幽靈草",
- "瘋樹 ",
- "魔鬼藤蔓",
- "含兇草",
- "搖頭樹"};
- int price[7]={7099,1598,2960,1800,4050,3999,6540};
- cout<<"*** special植物專賣店 ***"<<endl<<endl;
- for(int i=0; i<=6; i++)
- {
- cout<<"<"<<i+1<<">"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
- }
- cout<<"<8>結帳"<<endl<<endl<<endl;
- re:
- cout<<"請輸入商品代碼: "<<endl;
- cin>>p;
- if(p>=1 && p<=7)
- {
- cout<<"數量: "<<endl;
- cin>>q;
- if(q>=1)
- {
- sum=sum+price[p-1]*9;
- goto re;
- }
- }
- else if(p==8)
- {
- goto checkout;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- checkout:
- cout<<"總共"<<sum<<"元"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |