gpt4 book ai didi

c++ - 用递归和 While 循环对兔子求幂

转载 作者:搜寻专家 更新时间:2023-10-31 00:00:11 25 4
gpt4 key购买 nike

几天前我在这里问了一个关于这个 Rabbits 程序的问题,我几乎完成了它。问题是当我输入 0 时,它崩溃并且不运行。有人可以帮助我吗,这是我的任务:

一对刚出生的兔子(一公一母)被放在田里。兔子可以在一个月大时交配,因此在第二个月末,每对兔子都会生出两对新兔子,然后就死了。注:在第 0 个月,有 0 对兔子。第 1 个月,有 1 对兔子。

  1. 编写一个程序 - 使用 while 循环 - 从用户那里获取月数并在该月末打印兔子对的数量。
  2. 在同一个 cpp 文件中,编写一个递归函数 rabbits(),它将月数作为输入并返回该月末兔子对的数量。
  3. 在主程序中,使用用户输入的数字调用函数 rabbits()。输出两个计算结果(即您通过循环获得的计算结果和递归函数返回的计算结果)并查看它们是否相等。

#include <iostream>
using namespace std;

int rabbits (int);

int main ()

{
int month_function, month_while, result_rec, result_while, counter = 0, rab_now, rab_lastmonth = 0, rab_twomonthsago = 1;

cout << "Please enter the month. \n\n";
cin >> month_function;
month_while = month_function;
cout << "\n";

if (month_function % 2 == 0) // if month entered is even, the recursive function will use month - 1 because the total number of rabbits doubles every other month
{
month_function--;
}

result_rec = rabbits (month_function);

while (counter < month_while)
{
if (counter % 2 == 0)
{
rab_now = rab_lastmonth + rab_twomonthsago;
rab_lastmonth = rab_now;
rab_twomonthsago = rab_now;
}
counter++;
result_while = rab_lastmonth;
}

cout << "According to the recursive function, there are " << result_rec << " pairs of rabbits at the end of month " << month_while << "\n\n";

cout << "According to the while loop, there are " << result_while << " pairs of rabbits at the end of month " << month_while << endl;

if (result_rec = result_while)
{
cout << "\n";
cout << "They are equal!" << endl;
}
else
{
cout << "They are not equal!" << endl;
}

return 0;
}

int rabbits (int month_function)

{
if (month_function == 0)
{
return 0;
}
else if (month_function == 1)
{
return 1;
}
else
{
return (rabbits (month_function - 2) + rabbits (month_function - 2));
}
}

最佳答案

你的问题在这里:

if (month_function % 2 == 0) // if month entered is even, the recursive function will use   month - 1 because the total number of rabbits doubles every other month
{
month_function--;
}

如果您输入 0,则计算结果为真,因此 month_function 等于 -1

您(很可能)在您的逻辑中也有错误。如果您为月份函数输入 2,这将返回 0,这是错误的。想想输入 2 应该得到什么答案,从那里修正应该相当容易。

关于c++ - 用递归和 While 循环对兔子求幂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13853686/

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