- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- system("cls");
- int option,qty,sum;
-
- string name[]={"遙控汽車","飛機模型","玩具槍","玩偶 ","籃球 "};
- int price[]={450,550,325,200,660};
-
- cout<<"智能玩具店"<<endl<<endl;
- cout<<"商品價目表"<<endl;
-
- for(int i=0;i<=4;i++)
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
- cout<<"(6)結帳"<<endl<<endl;
-
- re:
- cout<<"請輸入商品號碼:";
- cin>>option;
- if(option==6){
- goto checkout;
- }
-
- else if(option>=1 and option<=4){
- cout<<"商品數量:";
- cin>>qty;
- sum=sum+price[option-1]*qty;
- goto re;
- }
- checkout:
- cout<<endl<<"總共"<<sum<<"元"<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |