返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string name[]={"遙控汽車","飛機模型","足球\t","拼圖\t","玩具槍","可愛玩偶","籃球\t"};
  6.     int price[]={450,550,325,200,660,150,380};
  7.     int buy,sum=0,amount;   
  8.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  9.     cout<<"[商品價目表]"<<endl;
  10.     for(int i=0;i<=6;i++)
  11.     {
  12.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
  13.     }
  14.     cout<<"(8)結帳(給錢)"<<endl<<endl;
  15.     re:
  16.     cout<<"你要買什麼?(代碼)"<<endl;
  17.     cin>>buy;
  18.     if(buy>=1 and buy<=7)
  19.     {
  20.         cout<<"你要買幾個?(數字)"<<endl;
  21.         cin>>amount;
  22.         sum=sum+price[buy-1]*amount;
  23.         goto re;
  24.     }
  25.     else if(buy==8)
  26.     {
  27.         cout<<"總共"<<sum<<"元"<<endl;
  28.         if(sum==0)
  29.         {
  30.             cout<<"滾!"<<endl;     
  31.         }
  32.     }
  33.     else
  34.     {
  35.                 cout<<"輸入錯誤"<<endl;
  36.                 goto re;
  37.     }
  38.    
  39.    
  40.     system("pause");
  41.     return 0;
  42. }
複製代碼

TOP

返回列表