【问题标题】:Passing array to Boolean Function将数组传递给布尔函数
【发布时间】:2015-08-03 13:53:22
【问题描述】:

我正在做一个班级项目,我几乎完成了所有代码,我只有一个问题(代码在 C++ 中)。我不太擅长使用布尔函数,尤其是在这个程序的情况下。如果你们可以帮助我编写此代码或将我推向正确的方向,我将不胜感激。该程序应该是由结构组成的 Soda Machine 程序。我的问题是如何将数组传递给布尔函数,以检查客户想要购买的饮料是否还有剩余。如果没有剩余饮料,程序将打印出“对不起,我们已售罄。请重新选择。”如果仍有饮料可用,则什么也不做,继续执行该程序。它几乎可以验证剩下的饮料量。我试着写了这个函数,但我不确定它是否正确,我会把它贴出来让你们看看。如果你们需要任何其他信息,请告诉我。感谢各位前辈的帮助。

#include <iostream>
#include <string>
#include <cmath>
#include <iomanip>

using namespace std; 

struct Machine
{
   string name;

   double cost;

   int drinks;
};

int displayMenu(int choice);

double inputValidation(double);

bool drinksRemaining(); // this is the function that will check if there are any drinks of the choice left 

int displayMenu(int choice)
{

   cout << "SOFT DRINK MACHINE\n";

   cout << "------------------\n";

   cout << "1) Cola ($0.65)\n";

   cout << "2) Root Beer ($0.70)\n";

   cout << "3) Lemon-Lime ($0.75)\n";

   cout << "4) Grape Soda ($0.85)\n";

   cout << "5) Water ($0.90)\n";

   cout << "6) Quit Program\n";

   cout << endl;

   cout << "Please make a selection: ";

   cin >> choice;

   return choice; 

}

double inputValidation(double amount)
{

   while (amount < 0.00 || amount > 1.00)
   {
      cout << "Please enter an amount between $0.00 and $1.00.\n";

      cout << "It should also be equal to or greater than the drink price : \n";

      cin >> amount;
   }

   return amount;

}

bool drinksRemaining() // this is the function that I am having trouble with
{
   if (drinks <= 0)
   {
      cout << "Sorry we are out of this drink. Please choose another one.";

      cin >> drinkChoice;

      return true;
   }

   else
   {
      return false; 
   }
}


int main()
{
   const int DRINK_NUMS = 5;

   int selection = 0;

   double amountInserted = 0.00;

   double changeReturned = 0.00;

   double profit = 0.00;

   Machine drink[DRINK_NUMS] = { { "Cola", .65, 20 }, { "Root Beer", .70, 20 }, { "Lemon-Lime", .75, 20 }, { "Grape Soda", .85, 20 }, { "Water", .90, 20 } };

   do
   {
      profit += amountInserted - changeReturned;

      selection = displayMenu(selection);

      if (selection == 1)
      {
         cout << "Please enter the amount you want to insert:\n";

         cin >> amountInserted;

         inputValidation(amountInserted);

         changeReturned = amountInserted - drink[0].cost;

         cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

         drink[0].drinks--;

      }

      else if (selection == 2)
      {
         cout << "Please enter the amount you want to insert:\n";

         cin >> amountInserted;

         inputValidation(amountInserted);

         changeReturned = amountInserted - drink[1].cost;

         cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

         drink[1].drinks--;

      }

      else if (selection == 3)
      {
         cout << "Please enter the amount you want to insert.\n";

         cin >> amountInserted;

         changeReturned = amountInserted - drink[2].cost;

         cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

         drink[2].drinks--;


      }

      else if (selection == 4)
      {
         cout << "Please enter the amount you want to insert.\n";

         cin >> amountInserted;

         changeReturned = amountInserted - drink[3].cost;

         cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

         drink[3].drinks--;

      }

      else if (selection == 5)
      {
         cout << "Please enter the amount you want to insert.\n";

         cin >> amountInserted;

         changeReturned = amountInserted - drink[4].cost;

         cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

         drink[4].drinks--;

      }

      else if (selection == 6)
      {
         cout << endl;

         cout << "SOFT DRINK MACHINE REPORT\n";

         cout << "--------------------------\n";

         cout << "Total amount earned: $" << profit << endl;

         cout << endl;
      }

      else
      {
         cout << "Invalid selection. Please try again.";

         displayMenu(selection);
      }

   }while (selection != 6);

   system("PAUSE");

   return 0; 
}

【问题讨论】:

  • 你能用std::array代替c风格的数组吗?
  • 这个函数看起来像bool drinksRemaining(std::array&lt;Machine, TOTAL_NUMBER_MACHINE_PRODUCTS&gt; current_machine),在里面你指的是current_machine[whatever_the_product_number_is]。您可以使用 typedef 或使用不同的数据结构进一步改进这一点,但这是对读者的练习;)

标签: c++ arrays function struct boolean


【解决方案1】:

函数需要一个对象或对Machine类型对象的引用。

bool drinksRemaining(Machine const& m);

并且可以非常简单地实现:

bool drinksRemaining(Machine const& m)
{
   return (m.drinks > 0);
}

您可以将其用作:

  if (selection == 1)
  {
     if ( drinksRemaining(drink[0]) )
     {
        cout << "Please enter the amount you want to insert:\n";

        cin >> amountInserted;

        inputValidation(amountInserted);

        changeReturned = amountInserted - drink[0].cost;

        cout << setprecision(2) << fixed << "CHANGE : $" << changeReturned << endl;

        drink[0].drinks--;
     }
     else
     {
        cout << "Sorry we are out of this drink. Please choose another one.";
     }
  }

【讨论】:

    猜你喜欢
    • 2013-09-04
    • 2015-12-26
    • 1970-01-01
    • 2016-08-28
    • 1970-01-01
    • 1970-01-01
    • 2023-03-10
    • 2019-02-10
    • 1970-01-01
    相关资源
    最近更新 更多