gpt4 book ai didi

c++ - 关于函数内部方程的简单问题

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

嘿,基本上我遇到了这个问题,我试图将一个方程式放入一个函数中,但它似乎没有为函数设置值,而是根本没有改变它。

这是一个捕食者猎物模拟,我在 for 循环中有这段代码。

    wolves[i+1] = ((1 - wBr) * wolves[i] + I * S * rabbits[i] * wolves[i]); 
rabbits[i+1] = (1 + rBr) * rabbits[i] - I * rabbits[i] * wolves[i];

当我执行它时,它会按预期工作并适本地更改这两个数组的值,但是当我尝试将它放在一个函数中时,

    int calcRabbits(int R, int rBr, int I, int W)
{
int x = (1 + rBr) * R - I * R * W;

return x;
}

int calcWolves(int wBr, int W, int I, int S, int R)
{
int x = ((1 - wBr) * W + I * S * R * R);
return x;

}

并这样设置值

    rabbits[i+1] = calcRabbits ( rabbits[i], rBr, I, wolves[i]);
wolves[i+1] = calcWolves(wBr, wolves[i], I, S, rabbits[i]);

这些值与它们初始化时的值保持不变,它似乎根本不起作用,我不知道为什么。我已经在这上面待了几个小时了,这可能是我遗漏的东西,但我想不通。

感谢任何帮助。

编辑:我意识到参数不对,但是我之前用正确的参数试过还是不行,只是不小心把它改成了错误的参数(编译器鼠标悬停显示的是旧版本的参数)

Edit2:整段代码是这样的

    days = getDays(); // Runs function to get Number of days to run the simulation for
dayCycle = getCycle(); // Runs the function get Cycle to get the # of days to mod by

int wolves[days]; // Creates array wolves[] the size of the amount of days
int rabbits[days]; // Creates array rabbits [] the size of the amount of days
wolves[0] = W; // Sets the value of the starting number of wolves
rabbits[0] = R; // sets starting value of rabbits


for(int i = 0; i < days; i++) // For loop runs the simulation for the number of days
{



// rabbits[i+1] = calcRabbits ( rabbits[i], rBr, I, wolves[i]);

// // //This is the code to change the value of both of these using the function

// wolves[i+1] = calcWolves(wBr, wolves[i], I, S, rabbits[i]);



// This is the code that works and correctly sets the value for wolves[i+1]

wolves[i+1] = calcWolves(wBr, wolves[i], I, S, rabbits[i]);
rabbits[i+1] = (1 + rBr) * rabbits[i] - I * rabbits[i] * wolves[i];

}

编辑:我意识到我的错误,我将 rBr 和 wBr 作为整数放入,它们是 float ,即小于 1 的数字,因此它们被自动转换为 0。谢谢 sje

最佳答案

Phil 我看不出您的代码有任何明显的错误。

我的直觉是你弄乱了参数。

在这一点上使用 gdb 就太过分了。我建议您将打印输出放在 calcRabbits 和 calcWolves 中。打印出所有参数、新值和迭代次数。这将使您对正在发生的事情有一个很好的了解,并有助于追踪问题。

您是否有我们可以尝试测试和运行的带有初始化的完整代码?

关于c++ - 关于函数内部方程的简单问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3106958/

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