返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  5.     int price[]={450,550,325,200,660,150,380};
  6.    
  7.     int a,b,sum=0;
  8.    
  9.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  10.     cout<<"[商品價目表]"<<endl;

  11.     for(int i=0; i<7; i++){
  12.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;        
  13.     }
  14.     cout<<"(8)結帳"<<endl;
  15.    
  16.     re:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>a;
  19.     if(a>=1 and a<=7){
  20.         cout<<"數量: ";
  21.         cin>>b;
  22.         sum+=price[a-1]*b ;
  23.         goto re;      
  24.     }
  25.     else if(a==8){
  26.         goto checkout;
  27.     }
  28.    
  29.     checkout:
  30.     cout<<endl<<"總共"<<sum<<"元"<<endl;
  31.    
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

返回列表