- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string n[7]={"遙控汽車","飛機模型","足球 ","拼圖 ",
- "玩具槍","可愛玩偶","籃球 "};
- int m[7]={100,200,300,400,500,600,700};
- int p,q,sum=0;
- cout<<"☆★☆ 智障玩具店 ☆★☆"<<endl<<endl;
- cout<<"[商品價目表]"<<endl;
- for(int i=0; i<=6; i++)
- {
- cout<<"("<<i+1<<")"<<n[i]<<"\t"<<m[i]<<"元"<<endl;
- }
- cout<<"結帳"<<endl;
- re:
- cout<<"請輸入代號";
- cin>>p;
-
- if(p>=1 && p<=7)
- {
- cout<<"阿數量哩";
- cin>>q;
- if(q>0)
- {
- sum+=q*m[p-1];
- goto re;
-
- }else
- {
- cout<<"打屁阿";
- goto re;
- }
- }else if(p==8)
- {
- goto pp;
- }else
- {
- cout<<"白癡"<<endl;
- goto re;
- }
- pp:
- cout<<sum<<"元,把錢吐出來"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |