本帖最後由 盧玄皓 於 2023-4-28 21:10 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string n[]={"手槍 ","彈藥 ","98K ","AWM ","M500 ","沙漠之鷹 "};
- int p,q,sum=0;
- int price[]={10000,450,98000,100000,43000,52000};
-
- cout<<"fire槍械店"<<endl<<endl;
- cout<<"[槍械價目表]"<<endl;
- for(int i=0;i<6;i++)
- {
- cout<<"("<<i+1<<")"<<n[i]<<"\t"<<price[i]<<endl;
- }
- cout<<"(7)結帳"<<endl<<endl;
- re:
- cout<<"請輸入商品代碼: ";
- cin>>p;
- if(p==7)
- {
- goto checkout;
- }else if(p>=1 && p<=6)
- {
- cout<<"數量: ";
- cin>>q;
- sum+=price[p-1]*q;
- goto re;
- }else
- {
- goto re;
- }
- checkout:
- cout<<endl<<"總共"<<sum<<"元!"<<endl;
-
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |