返回列表 發帖
本帖最後由 張峻瑋 於 2014-2-8 18:16 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[8]={"遙控飛機",
  7.                     "水槍  ",
  8.                     "玩偶  ",
  9.                     "足球  ",
  10.                     "拼圖  ",
  11.                     "籃球  ",
  12.                     "玩具車"};
  13.     int price[8]={50000,6500000,70000,655000,999999,300000,750000,};
  14.     int p,q,sum=0;
  15.     cout<<"***貴死人玩具店***"<<endl<<endl;
  16.     cout<<"[商品價目表]"<<endl;
  17.     for(int i=0;i<=6;i++)
  18.     {
  19.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;   
  20.     }
  21.     cout<<"(8)結帳"<<endl;
  22.     re:
  23.     cout<<"請輸入商品代碼:"<<endl;
  24.     cin>>p;
  25.     if(p>=1 && p<=7)
  26.     {   
  27.          cout<<"請輸入數量:"<<endl;
  28.          cin>>q;
  29.          if(q>0)
  30.          {
  31.              sum=sum+price[p-1]*q;
  32.              goto re;
  33.          }
  34.          else  
  35.          {
  36.              cout<<"輸入錯誤!"<<endl;
  37.              goto re;   
  38.          }
  39.     }
  40.     else if(p==8)
  41.     {
  42.          goto checkout;   
  43.     }
  44.     else
  45.     {
  46.          cout<<"輸入錯誤!"<<endl;
  47.          goto re;
  48.     }
  49.     checkout:
  50.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  51.     system("pause");
  52.     return 0;   
  53. }
複製代碼

TOP

返回列表