gpt4 book ai didi

c++ - 使用斐波那契递归打印 1 到 n

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:22:39 24 4
gpt4 key购买 nike

<分区>

我想在我的函数中打印从 1 到 n 的斐波那契数列。我知道我可以通过编写一个常规的 Fibonacci 并在 for block 中使用它来打印 1 到 N 来做到这一点。像这样:

#include <iostream>
using namespace std;

int fibo(int);

int main(){
for (int i = 0; i < 5; i++)
cout << fibo(5);
system("pause");
return 0;
}

int fibo(int n){
if (n == 1 || n == 2)
return 1;
else
return fibo(n - 1) + fibo(n - 2);
}

但我的问题是,如果没有 for,IN 我的函数我做不到我的意思是我想用递归算法打印它这是我到目前为止的代码

#include <iostream>
using namespace std;

int fibo(int, bool);

int main(){
fibo(5, false);
system("pause");
return 0;
}

int fibo(int n, bool IsPrinted){
if (n == 1 || n == 2){
if (!IsPrinted)
cout << 1 << endl;
return 1;
}
else{
int temp = fibo(n - 1, IsPrinted) + fibo(n - 2, IsPrinted);
if (!IsPrinted){
cout << temp << endl;
IsPrinted = true;
}
return temp;
}
}

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