- #include <iostream>
- using namespace std;
- int main()
- {
- int p,qty;
- int sum=0;
- string name[]={"R/C Car", "Model Plane", "Football", "Tennis Ball","Toy Gun","Basketball"};
- int price[]={400,690,678,560,570,300};
- cout<<"*****Da Epic Toy Store*****"<<endl<<endl;
- cout<<"[Products]"<<endl;
-
- for(int i=0;i<=5;i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<"$"<<price[i]<<endl;
- }
-
- cout<<"(8)Checkout"<<endl<<endl;
- re:
- cout<<"Enter the number corresponding to the desired product: ";
- cin>>p;
- if(p>=1 && p<=7)
- {
- cout<<"Quantity:";
- cin>>qty;
- sum=sum+(price[p-1]*qty);
- goto re;
- }else if(p==8)
- {
- goto checkout;
-
- }
- checkout:
-
- cout<<endl<<"Total:"<<"$"<<sum<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |