1

有人可以帮助解释为什么当我将 2 个数字相乘时它返回 0,但 3 和 4 个数字它有效吗?

我为一堂课写了这个,但我看不出它有什么问题,谢谢。

函数是使用重载函数将 2、3 或 4 个数字相乘,并通过引用传递乘积。

#include <iostream>
using namespace std;

void mult(int& product, int n1, int n2);
void mult(int& product, int n1, int n2, int n3);
void mult(int& product, int n1, int n2, int n3, int n4);

int main() {
    int product, n1, n2, n3, n4;
    char ans;

    do {
        product = 0;
        n1 = 0;
        n2 = 0;
        n3 = 0;
        n4 = 0;
        cout << "Enter 2-4 numbers to multiply\n";
        cout << "First number: ";
        cin >> n1;
        cout << "Second number: ";
        cin >> n2;
        cout << "Enter a 3rd number? (y/n):";
        cin >> ans;

        if (ans == 'y') {
            cout << "Third number: ";
            cin >> n3;
            cout << "Enter a 4th number? (y/n):";
            cin >> ans;
        } else {
            mult(product, n1, n2);
        }

        if (ans == 'y') {
            cout << "Fourth number: ";
            cin >> n4;
            mult(product, n1, n2, n3, n4);
        } else {
            mult(product, n1, n2, n3);
        }

        cout << "The product is " << product << endl << n1 << n2 << n3 << n4;
        cout << "Would you like to calculate another? (y/n):";
        cin >> ans;

    } while (ans == 'y');
}

定义

void mult(int& product, int n1, int n2)
{
    product = (n1 * n2);
    cout << product;
}
void mult(int& product, int n1, int n2, int n3)
{
    product = (n1 * n2 * n3);
}
void mult(int& product, int n1, int n2, int n3, int n4)
{
    product = (n1 * n2 * n3 * n4);
}
4

2 回答 2

5

这是因为您的控制结构执行语句

else{mult(product,n1,n2,n3);}

即使您只打算使用 mult(product,n1,n2)。只有两个数字,n3 将为 0。因此结果也为零。

您可以通过像这样重组它来解决它:

   cout << "Enter a 3rd number? (y/n):";
    cin >> ans;

    if (ans == 'y') {
        cout << "Third number: ";
        cin >> n3;
        cout << "Enter a 4th number? (y/n):";
        cin >> ans;
        if (ans == 'y') {
            cout << "Fourth number: ";
            cin >> n4;
            mult(product, n1, n2, n3, n4);
        } else {
            // Three numbers
            mult(product, n1, n2, n3);
        }
    } else {
        // Two numbers
        mult(product, n1, n2);
    }
于 2013-10-31T14:27:17.883 回答
2

您的条件设置不正确:

if (ans == 'y') 
{
        cout << "Third number: ";
        cin >> n3;
        cout << "Enter a 4th number? (y/n):";
        cin >> ans;
}
else
{
    mult(product, n1, n2); // product is set here correctly for 2 numbers
}

if (ans == 'y') // ans is STILL 'n' here
{
    cout << "Fourth number: ";
    cin >> n4;
    mult(product, n1, n2, n3, n4);  
}
else
{
    mult(product, n1, n2, n3); // this overwrites the correct product with 0 because n3 is 0
}

我假设这是一项学术练习,因此更简单的方法可能如下所示:

int main()
{
    int a = 0;
    int b = 0;
    int c = 0;
    int d = 0;
    int product = 0;

    unsigned short cnt = 0;

    do
    {
        std::cout << "Enter the number of operands (2-4):  ";
        if (!(std::cin >> cnt))
        {
            std::cin.clear();
            std::cout << "Invalid number of operands!" << std::endl;
        }

    } while (cnt < 2 || cnt > 4); 

    std::cout << "Please enter your operands:  ";

    switch (cnt)
    {
    case 2:
        {
            std::cin >> a >> b; // error checking left out for simplicity
            mult(product, a, b);
            break;
        }
    case 3:
        {
            std::cin >> a >> b >> c;
            mult(product, a, b, c);
            break;
        }
    case 4:
        {
            std::cin >> a >> b >> c >> d;
            mult(product, a, b, c, d);
            break;
        }
    }

    std::cout << "Product is " << product << std::endl;      

    return 0;
}
于 2013-10-31T14:27:50.120 回答