返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,sum=0;
  9.     string name[]={"遙控人","大鳥機模型","人肉球","拼身體"};
  10.     int price[]={2000,660,1256,1000};
  11.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<4; i++)
  14.     cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     cout<<"(5)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==5)
  20.     {
  21.     goto re3;
  22.     }else if(p>=1 && p<=4)
  23.     {
  24.     cout<<"數量: ";
  25.     cin>>q;
  26.     sum+=price[p-1]*q;
  27.     goto re2;  
  28.     }else
  29.     {
  30.     goto re;     
  31.     }
  32.     re3:
  33.     cout<<endl<<"總共"<<sum<<"元!"<<endl;         
  34.     system("pause");
  35.     goto re;   
  36.     return 0;
  37. }
複製代碼

TOP

返回列表