返回列表 發帖
  1. int main()
  2. {
  3.   int price[]={450,550,325,200,660,150,380};  
  4.   int p,q,sum=0;   
  5.   cout<<"***智能玩具店***"<<endl<<endl;
  6.   cout<<"**商品價目表**"<<endl;
  7.   cout<<"(1)遙控汽車\t450元"<<endl;
  8.   cout<<"(2)飛機模型\t550元"<<endl;
  9.   cout<<"(3)足球\t\t325元"<<endl;
  10.   cout<<"(4)拼圖\t\t200元"<<endl;
  11.   cout<<"(5)玩具槍\t660元"<<endl;
  12.   cout<<"(6)可愛玩偶\t150元"<<endl;
  13.   cout<<"(7)籃球\t\t380元"<<endl;
  14.   cout<<"#如要結帳請輸入代碼(8)和數量:8#"<<endl;
  15.   start:
  16.   cout<<"請輸入你要選購的商品代碼: ";
  17.   cin>> p;
  18.   cout<<"數量: ";
  19.   cin>> q;
  20.   if(p>=1 && q<=7 && q>0)
  21.   {
  22.   sum=sum+price[p-1]*q;
  23.   goto start;
  24.   }
  25.   else if(p==8 && q==8)
  26.   {
  27.   goto checkout;            
  28.   }
  29.   else
  30.   {
  31.   cout<<"輸入錯誤"<<endl;   
  32.   }
  33.   checkout:
  34.   cout<<endl<<"總共"<<sum<<"元!"<<endl;
  35.   system("pause");
  36.   return 0;
  37. }
複製代碼

TOP

返回列表