返回列表 發帖
備註 : 我的有問題但不知如何解決 請老師解答 謝謝
  1. #include<iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.     cout<<"☆★☆《影武的網路速食店》☆★☆"<<endl;
  6.     cout<<endl;
  7.     cout<<"〔商品價目表〕"<<endl;
  8.     string list[8]={"薯條","漢堡","可樂","雪碧","奶昔","紅茶","披薩","結帳"};
  9.     int money[7]={50,80,45,45,55,45,299};
  10.     for ( int i=0 ; i<8 ; i++)
  11.      {
  12.         cout<<"("<<i+1<<")"<<list[i]<<""<<"\t";
  13.         if (i!=7){
  14.                   cout<<money[i]<<"元"<<endl;
  15.                   }
  16.                         
  17.      }
  18.      cout<<endl;
  19.      int sum=0;
  20.      while (true)
  21.      {
  22.            int a=0,b=0;
  23.            cout<<"請輸入代碼"<<endl;
  24.            cin>>a;
  25.            if(a==8){
  26.                  break;
  27.            }else{
  28.                  cout<<"數量"<<endl;
  29.                  cin>>b;
  30.                  inventory[a-1]+=b;
  31.                  sum += money[a-1]*b;
  32.            }
  33.            cout<<"《收據》"<<endl;
  34.            cout<<"影武網路速食店"<<endl;
  35.            cout<<"地址     : 火星芭樂國香蕉市西瓜區哈密瓜社區一路0號"<<endl;
  36.            cout<<"電話     : 您播的電話是空號,請查明後再播,謝謝!"<<endl;
  37.            cout<<"購買日期 : 3684年13月32日 "<<endl;
  38.            cout<<"購買時間 : 25時83分92秒"<<endl;
  39.            cout<<"服務人員 : 魔法師影武"<<endl;
  40.            cout<<"*請於25分鐘後至本店取餐*"<<endl;
  41.            cout<<"-----------------------------------"<<endl;
  42.            for(int i=0;i<=6;i++)
  43.            {
  44.                    if(inventory[i]!=0)
  45.                            {
  46.                             cout<<list[i]<<"\t";
  47.                            cout<<money[i]<<"\t元*";
  48.                            cout<<inventory[i]<<endl;
  49.                     }
  50.                    }
  51.                    if(sum==0)
  52.                    cout<<"\t(空白)"<<endl;
  53.                    cout<<"-----------------------------------"<<endl;
  54.          }
  55.      cout<<"總金額"<<sum<<"元"<<endl;
  56.      system("pause");
  57.      return 0;
  58. }
複製代碼

TOP

完成修正版
  1. #include<iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.     cout<<"☆★☆《影武的網路速食店》☆★☆"<<endl;
  6.     cout<<endl;
  7.     cout<<"〔商品價目表〕"<<endl;
  8.     string list[8]={"薯條","漢堡","可樂","雪碧","奶昔","紅茶","披薩","結帳"};
  9.     int inventory[7]={0,0,0,0,0,0,0};
  10.     int money[7]={50,80,45,45,55,45,299};
  11.     for ( int i=0 ; i<8 ; i++)
  12.      {
  13.         cout<<"("<<i+1<<")"<<list[i]<<""<<"\t";
  14.         if (i!=7){
  15.                   cout<<money[i]<<"元"<<endl;
  16.                   }
  17.                         
  18.      }
  19.      cout<<endl;
  20.      int sum=0;
  21.      while (true)
  22.      {
  23.            int a=0,b=0;
  24.            cout<<"請輸入代碼"<<endl;
  25.            cin>>a;
  26.            if(a==8){
  27.                  break;
  28.            }else{
  29.                  cout<<"數量"<<endl;
  30.                  cin>>b;
  31.                  inventory[a-1]+=b;
  32.                  sum += money[a-1]*b;
  33.            }
  34.          }
  35.          cout<<"《收據》"<<endl;
  36.            cout<<"影武網路速食店"<<endl;
  37.            cout<<"地址     : 火星芭樂國香蕉市西瓜區哈密瓜社區一路0號"<<endl;
  38.            cout<<"電話     : 您播的電話是空號,請查明後再播,謝謝!"<<endl;
  39.            cout<<"購買日期 : 3684年13月32日 "<<endl;
  40.            cout<<"購買時間 : 25時83分92秒"<<endl;
  41.            cout<<"服務人員 : 魔法師影武"<<endl;
  42.            cout<<"*請於25分鐘後至本店取餐*"<<endl;
  43.            cout<<"-----------------------------------"<<endl;
  44.            for(int i=0;i<7;i++)
  45.            {
  46.                    if(inventory[i]!=0)
  47.                            {
  48.                             cout<<list[i]<<"\t";
  49.                            cout<<money[i]<<"*";
  50.                            cout<<inventory[i]<<endl;
  51.                     }
  52.                    }
  53.                    if(sum==0)
  54.                    cout<<"\t(空白)"<<endl;
  55.                    cout<<"-----------------------------------"<<endl;
  56.      cout<<"總金額"<<sum<<"元"<<endl;
  57.      system("pause");
  58.      return 0;
  59. }
複製代碼

TOP

返回列表