作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
class FibR
{
int c=0;
void fib(int i,int j,int n){
if(c==n) return;
System.out.print(i+" "+j+" ");
int t=j;
i=i+j;
j=i+t;
c++;
fib(i,j,n);
}
public static void main(String[] args) {
FibR f=new FibR();
f.fib(0,1,5);
}
}
输出是:
0 1 1 2 3 5 8 13 21 34
我只需要打印 0 1 1 2 3 ,即
,5 个术语我需要对 if 语句中的条件进行哪些更正?尝试使用 c+=2
而不是 c++
,但代码进入无限循环。提前致谢
最佳答案
在您的每个 fib
调用中,您打印两个 fib 数字:System.out.print(i+""+j+"");
以下是一个更简单的版本:
public class FibR {
void fib(int i, int j, int n) {
if (n == 0) return;
System.out.println(i);
fib(j, i + j, n - 1);
}
public static void main(String[] args) {
FibR f = new FibR();
f.fib(0, 1, 5);
}
}
每次你调用fib
,你传递最新的两个数(i
和j
),以及还有多少数要打印( n
).
关于java - 在此斐波那契数列代码中打印 5 项后如何停止递归?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42729663/
我是一名优秀的程序员,十分优秀!