返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  7.   cout<<"[商品價目表]"<<endl;
  8.   
  9.   string a[7]={"遙控器車","飛機模型","足球  ",
  10.                "拼圖  ","玩具槍 ","可愛玩偶","籃球  "};
  11.   int price[7]={450,550,325,200,660,
  12.                150,380 };
  13.   int p,q,sum=0;   
  14.   for(int i=0;i<7;i++)
  15.   {
  16.       cout<<"("<<i+1<<")"<<a[i]<<"\t"<<price[i]<<"元"<<endl;
  17.   }  
  18.   cout<<"(8)結帳"<<endl<<endl;
  19.   
  20.   re:
  21.   cout<<"請輸入商品代碼: ";
  22.   cin>> p;
  23.   
  24.   if(p>=1 && p<=7)
  25.   {   
  26.      cout<<"數量: ";
  27.      cin>> q;
  28.      if(q>0)  
  29.      {      
  30.         sum= sum+ price[p-1]*q;  
  31.         goto re;   
  32.      }else   
  33.      {
  34.           cout<<"您輸入的數量有誤!!"<<endl;
  35.           goto re;
  36.      }
  37.   }else if(p==8)
  38.   {
  39.       goto checkout;
  40.   }else
  41.   {
  42.        cout<<"您輸入的代碼有錯!!"<<endl;
  43.        goto re;
  44.   }
  45.   
  46.   checkout:
  47.   cout<<"總金額: "<<sum<<"元"<<endl;
  48.   
  49.   system("pause");
  50.   return 0;
  51. }
複製代碼

TOP

返回列表