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

TOP

返回列表