- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[8]={"windows 10","windows 7","windows 8","windows 8.1","windows XP","windows 10","office 全部版本","結帳"};
- int inventory[7]={0,0,0,0,0,0,0};
- int money[7]={2000,5000,1000,10000,20,1150,1022225};
- int commodity,quantity,checkout=0;
- cout<<"微軟專賣店"<<endl;
- cout<<"[價目表]"<<endl;
- for(int i=0; i<=6; i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<money[i]<<"元"<<endl;
- }
- cout<<"("<<"8"<<")"<<name[7]<<endl;
- while(commodity!=8)
- {
- cout<<"請輸入想要買的商品號碼(結帳請按8):";
- cin>>commodity;
- if(commodity==8)
- break;
- cout<<"請輸入要購的數量:";
- cin>>quantity;
- inventory[commodity-1]+=quantity;
- checkout+=quantity*money[commodity-1];
- }
- cout<<"買物清單"<<endl;
- cout<<"-----------------------------------"<<endl;
- for(int i=0;i<=6;i++)
- {
- if(inventory[i]!=0)
- {
- cout<<name[i]<<"\t";
- cout<<money[i]<<"\t元 * ";
- cout<<inventory[i]<<endl;
- }
- }
- if(checkout==0)
- cout<<"\t(空白)"<<endl;
- cout<<"-----------------------------------"<<endl;
- cout<<"一共要付"<<checkout+300<<"元!(300塊運費)"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |