返回列表 發帖
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int p,qty;
  6.     int sum=0;
  7.   string name[]={"R/C Car", "Model Plane", "Football", "Tennis Ball","Toy Gun","Basketball"};
  8.   int price[]={400,690,678,560,570,300};
  9.   cout<<"*****Da Epic Toy Store*****"<<endl<<endl;
  10.   cout<<"[Products]"<<endl;
  11.   
  12.   for(int i=0;i<=5;i++)
  13.   {
  14.           cout<<"("<<i+1<<")"<<name[i]<<"\t"<<"$"<<price[i]<<endl;
  15.           }
  16.    
  17.     cout<<"(8)Checkout"<<endl<<endl;
  18.     re:
  19.   cout<<"Enter the number corresponding to the desired product: ";
  20.   cin>>p;
  21.   if(p>=1 && p<=7)
  22.   {
  23.           cout<<"Quantity:";
  24.           cin>>qty;
  25.           sum=sum+(price[p-1]*qty);
  26.           goto re;
  27.           }else if(p==8)
  28.           {
  29.                 goto checkout;
  30.                
  31.                 }
  32.                 checkout:
  33.                         
  34.           cout<<endl<<"Total:"<<"$"<<sum<<endl;         
  35.    
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

返回列表