- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- int p,q,sum=0;
- string name[5]={"乒乓球",
- "棒球 ",
- "足球 ",
- "躲避球",
- "籃球 "};
- int money[5]={50,100,125,200,600};
- cout<<"~~~超酷球店~~~"<<endl<<endl;
- cout<<"(商品價目表)"<<endl;
-
- for(int i=0; i<=4; i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<money[i]<<"元"<<endl;
- }
- cout<<"(6)結帳"<<endl<<endl;
- re:
- cout<<"請輸入商品代碼: ";
- cin>>p;
- if(p>=1 && p<=5)
- {
- cout<<"數量: ";
- cin>>q;
- if(q>0)
- {
- sum=sum+money[p-1]*q;
- goto re;
- }else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- }else if(p==6)
- {
- goto checkout;
- }else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- checkout:
- cout<<"總共"<<sum<<"元"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |