- #include<iostream>
- using namespace std;
- int main()
- {
- string name[]={"遙控汽車","飛機模型","足球\t","拼圖\t","玩具槍","可愛玩偶","籃球\t"};
- int price[]={450,550,325,200,660,150,380};
- int buy,sum=0,amount;
- cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
- cout<<"[商品價目表]"<<endl;
- for(int i=0;i<=6;i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
- }
- cout<<"(8)結帳(給錢)"<<endl<<endl;
- re:
- cout<<"你要買什麼?(代碼)"<<endl;
- cin>>buy;
- if(buy>=1 and buy<=7)
- {
- cout<<"你要買幾個?(數字)"<<endl;
- cin>>amount;
- sum=sum+price[buy-1]*amount;
- goto re;
- }
- else if(buy==8)
- {
- cout<<"總共"<<sum<<"元"<<endl;
- if(sum==0)
- {
- cout<<"滾!"<<endl;
- }
- }
- else
- {
- cout<<"輸入錯誤"<<endl;
- goto re;
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |