- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- string names[3]={"餅乾","糖果","飲料"};
- int price[3]={5,10,15};
- int n;
- int opt;
- bool keep=true;
- int sum=0;
- for(int i=0;i<=2;i++){
- cout<<i+1<<names[i]<<"\t"<<price[i]<<"\n";
- }
- cout<<"<4>結帳\n";
- while(keep){
- cout<<"輸入要買的商品號碼:";
- cin>>opt;
- if(opt!=1 and opt!=2 and opt!=3){
- cout<<"總共"<<sum<<"元\n";
- break;
- }
- else{
- cout<<"請輸入數量:";
- cin>>n;
- sum+=price[opt-1]*n;
- }
- }
- system("pause");
- return 0;
- }
複製代碼 |