返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.     string names[3]={"餅乾","糖果","飲料"};
  6.     int price[3]={5,10,15};
  7.     int n;
  8.     int opt;
  9.     bool keep=true;
  10.     int sum=0;
  11.     for(int i=0;i<=2;i++){
  12.             cout<<i+1<<names[i]<<"\t"<<price[i]<<"\n";
  13.     }
  14.     cout<<"<4>結帳\n";
  15.     while(keep){
  16.                 cout<<"輸入要買的商品號碼:";
  17.                 cin>>opt;
  18.                 if(opt!=1 and opt!=2 and opt!=3){
  19.                            cout<<"總共"<<sum<<"元\n";
  20.                            break;
  21.                 }
  22.                 else{
  23.                      cout<<"請輸入數量:";
  24.                      cin>>n;
  25.                      sum+=price[opt-1]*n;
  26.                 }
  27.     }         
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

返回列表