返回列表 發帖
本帖最後由 盧玄皓 於 2023-4-28 21:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string n[]={"手槍      ","彈藥        ","98K      ","AWM       ","M500       ","沙漠之鷹      "};
  7.    int p,q,sum=0;
  8.    int price[]={10000,450,98000,100000,43000,52000};
  9.    
  10.      cout<<"fire槍械店"<<endl<<endl;
  11.    cout<<"[槍械價目表]"<<endl;
  12.    for(int i=0;i<6;i++)
  13.     {
  14.             cout<<"("<<i+1<<")"<<n[i]<<"\t"<<price[i]<<endl;
  15.         }
  16.         cout<<"(7)結帳"<<endl<<endl;
  17.     re:
  18.     cout<<"請輸入商品代碼: ";
  19.     cin>>p;
  20.     if(p==7)
  21.     {
  22.         goto checkout;
  23.     }else if(p>=1 && p<=6)
  24.     {
  25.         cout<<"數量: ";
  26.         cin>>q;
  27.         sum+=price[p-1]*q;
  28.         goto re;  
  29.     }else
  30.     {
  31.         goto re;     
  32.     }
  33.     checkout:
  34.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  35.         
  36.     system("pause");
  37.      goto re;
  38.     return 0;
  39. }
複製代碼

TOP

返回列表