本帖最後由 張峻瑋 於 2014-2-8 18:16 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[8]={"遙控飛機",
- "水槍 ",
- "玩偶 ",
- "足球 ",
- "拼圖 ",
- "籃球 ",
- "玩具車"};
- int price[8]={50000,6500000,70000,655000,999999,300000,750000,};
- int p,q,sum=0;
- cout<<"***貴死人玩具店***"<<endl<<endl;
- cout<<"[商品價目表]"<<endl;
- for(int i=0;i<=6;i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
- }
- cout<<"(8)結帳"<<endl;
- re:
- cout<<"請輸入商品代碼:"<<endl;
- cin>>p;
- if(p>=1 && p<=7)
- {
- cout<<"請輸入數量:"<<endl;
- cin>>q;
- if(q>0)
- {
- sum=sum+price[p-1]*q;
- goto re;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- }
- else if(p==8)
- {
- goto checkout;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- checkout:
- cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |