- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int p, q, sum=0;
- string name[]={"模型","拼圖","玩偶","球","結帳"};
- int price[]={400,300,200,100};
- cout<<"☆★☆智能玩具店☆★☆"<<endl;
- cout<<"[商品價目表]"<<endl;
- for(int i=0; i<5; i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
- }
- cout<<"請輸入商品代碼:";
- cin>>p;
- if(p==5)
- {
- goto pay;
- }
- else if(p>=1 && p<5)
- {
- cout<<"請輸入商品數量:";
- cin>>q;
- sum+=price[p-1]*q;
- }
- else
- {
- cout<<"輸入錯誤"<<endl;
- }
- pay:
- cout<<"總共"<<sum<<"元"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |