1

我在我的编程课上遇到了一个挑战,我们必须使用一个 void 函数来计算可能的硬币组合,给定的变化值从 1 到 99 美分。

到目前为止,我的代码如下所示:

    #include <iostream>

using namespace std;

void computeCoins(int coinValue, int& num, int& amount_left);

int main()
{
    //Define varibles then get user input for change
    int leftOver, quarters=0, dimes=0, nickels=0, pennies=0, coins=0, originalAmount;
    do
    {
    cout << "Enter change amount: ";
    cin >> originalAmount;
    leftOver = originalAmount;
    } while ((leftOver > 99) || (leftOver < 1)); //Larger than 99 or smaller than 1? If yes, then try again.

    //Quarters
    computeCoins(25, coins, leftOver);
    quarters = coins;

    //Dimes
    computeCoins(10, coins, leftOver);
    dimes = coins;

    //Nickels
    computeCoins(5, coins, leftOver);
    nickels = coins;
    pennies = leftOver;

    cout << originalAmount << " cent/s could be given as " << quarters << " quarter/s, " << dimes << " dime/s, " << nickels << " nickel/s, " << " and " << pennies << " pennies.";
    cout << endl;
    system("PAUSE");
    return 0;
}

void computeCoins(int coinValue, int& num, int& amount_left)
{
    //Using the specified coin value, find how many can go into it then subtract it
    while (amount_left % coinValue == 0)
    {
        // Still dividable by the coin value
        num += 1;
        amount_left -= coinValue;
    }
}

现在我的问题是,当我运行程序时,它会返回一个非常大的负值,包括硬币、硬币和镍币。我很肯定这与我的循环条件的设置方式有关,有人知道为什么会这样吗?

4

2 回答 2

2

两个问题:一个未定义的硬币初始值。两个amount_left % coinValue == 0部分 - 我认为你的意思是amount_left >= coinValue

虽然没有必要在那个函数中不断迭代

void computeCoins(int coinValue, int& num, int& amount_left)
{
    // add as many coinValues as possible.    
    num += amount_left / coinValue;
    // the modulus must be what is left.
    amount_left = amount_left % coinValue;
}

请注意(除其他外),您最好使用unsigned ints大量的东西。

于 2013-10-07T15:05:12.030 回答
0

当我阅读您的问题时,您似乎应该寻找一种方法来获得所有可能的组合。奥利弗·马修斯的回答处理了第一部分(确定有多少给定类型的硬币可以放入零钱中),但你必须在一个循环中检查各种其他组合(例如所有便士,所有五分钱和便士、所有硬币和便士、所有四分之一和便士等),并且需要一种返回组合的方法(例如,返回某个结构/类的向量,该向量通过输出参数处理硬币计数 - 即是一个引用向量)。

于 2013-10-07T15:27:39.093 回答