返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     system("cls");
  7.     int option,qty,sum;
  8.    
  9.     string name[]={"遙控汽車","飛機模型","玩具槍","玩偶    ","籃球    "};
  10.     int price[]={450,550,325,200,660};
  11.    
  12.     cout<<"智能玩具店"<<endl<<endl;
  13.     cout<<"商品價目表"<<endl;
  14.    
  15.     for(int i=0;i<=4;i++)
  16.        cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
  17.        cout<<"(6)結帳"<<endl<<endl;
  18.    
  19.     re:
  20.     cout<<"請輸入商品號碼:";
  21.     cin>>option;
  22.     if(option==6){
  23.     goto checkout;
  24.     }
  25.    
  26.     else if(option>=1 and option<=4){
  27.         cout<<"商品數量:";
  28.         cin>>qty;
  29.         sum=sum+price[option-1]*qty;
  30.         goto re;
  31. }  

  32.     checkout:
  33.     cout<<endl<<"總共"<<sum<<"元"<<endl;         
  34.    
  35.     system("pause");  
  36.     return 0;
  37. }
複製代碼

TOP

返回列表