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

TOP

返回列表