gpt4 book ai didi

c++ - 递增的 int 在函数结束时重置

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:01:04 25 4
gpt4 key购买 nike

这是有问题的功能。有问题的变量是 count1。在 return count1; 之前,该函数似乎将 count1 重置为 1 或 2。最后 cout 行的结果是 n 行,其中 n=尝试次数,包括正确的回答。每行输出一个比下一行大 1 的数字,直到 count1 = 1 或 2。我无法确定它最终输出的模式。

问题本身只是占位符。

到底发生了什么事?

注意:我是一个非常新的程序员,我知道可能有更有效的方法来做我正在做的事情,但我还没有学到。我愿意接受建议,但我对这些建议的理解可能会因为我对 C++ 的不熟悉而受到阻碍

int q1(int count1)                      //q1() is always fed a value of 1.
{
using namespace std;
if (count1 <= 3) //User gets 3 tries to answer for full credit.
{ //count1 is returned in order to determine user score.

cout << "What is 2+2 \n"; //problem appears to occur between here and the end of this if statement.
double a1;
cin >> a1;

if (a1 == 4)
{
cout << "Yup. You know what 2+2 is. \n\n";
}
else
{
wrong(); //wrong() is a single line void function using std::cout and nothing else.
q1(++count1);
}
}
else
{
cout << "You have used all three tries. Next question. \n\n";
++count1; //count1 is incremented for an if statement in int main()
}
cout << count1 << "\n"; //This line is strictly for debugging
return count1;
}

最后 cout 行的输出看起来是这样的:
5
4
3
2
没有 \n5432

编辑:

下面有一个答案似乎解决了我的问题,但由于某种原因被删除了。

答案表明我应该将 q1(++count1) 替换为 count1 = q1(++count1);

在我看来这应该行不通,但在实践中它似乎行得通。为什么?

最佳答案

使用递归时,您的函数第一次运行时 count1 为 1(如您所说)。如果用户回答正确,那么您的函数将返回 1,因为 count1 的值永远不会改变。

如果用户回答错误,则 count1 加 1 并将其值赋予新函数(相同类型)。请记住,您传递了 count1 的值,这意味着新函数(第二个 q1())将获得数字 2,但会有一个新变量 count1。它们可能具有相同的名称,但它们是不同的变量。

有两种方法可以解决您的问题:

要么通过使用指针,这样你传递count1的地址,每个函数改变同一个变量。 (这是最难的方法,不是最有效的)或者

除了进行递归调用,您还可以像这样进行 while:

int q1(int count1)
{
using namespace std;
while (count1 <= 3) //Run as long as user has chances
{
cout << "What is 2+2 \n";
double a1;
cin >> a1;

if (a1 == 4)
{
cout << "Yup. You know what 2+2 is. \n\n";

//Using `break` you stop the running `while` so the next
//step is for the function to return
break;
}
else
{
wrong();

//By incrementing `count1` the next time the `while` runs
//if user ran out of tries it will not enter the loop, so
//it will return `count1` which would most likely be 4
count1++;
}
}

//Here the function is about to return, so you check if user won or lost
if (count1 == 4)
cout << "You have used all three tries. Next question. \n\n";

//Debug
cout << count1 << "\n";

//Return
return count1;
}

关于c++ - 递增的 int 在函数结束时重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34100824/

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