gpt4 book ai didi

c++ - 全新的 C++ 并且有点卡在如何计算系列产品上。 (下面给出的说明)

转载 作者:行者123 更新时间:2023-11-30 02:16:40 25 4
gpt4 key购买 nike

<分区>

你的程序应该提示用户输入两个整数,例如 m 和 n,然后计算并显示相应的系列产品(m×(m+1)×(m+2)×...×的值(n-1)×n)。如果您感到困惑,一个示例可能是用户输入 3 和 9。然后您计算 3 x 4 x 5 x 6 x 7 x 8 x 9 的乘积。它必须能够处理负数,到目前为止这不是问题,但无论我如何输入代码,它都不会返回产品。

以下是我到目前为止的内容,我相信这对于有经验的编码人员来说是非常糟糕的,但我假设我的错误是在我的“for”语句中,我们将不胜感激。

#include <iostream>

using namespace std;

int main()
{
int a1, a2, a3, b1, b2, i;

cout << "Input two integers separated by a blank space and press enter
to display the corresponding series product.\n";
cin >> a1 >> a2;

if (a1 <= a2)
{
b1 = a1;
b2 = a2;
}
else if (a2 <= a1)
{
b1 = a2;
b2 = a1;
}

for (i =b1; i <= b2; i++)
{
a3 =* i;
}

cout << "The series product of "; cout << a1 << ", " << a2 << ", ";
cout << " is: " << a3 << "\n" << endl;

system("pause");
return 0;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com