gpt4 book ai didi

java - 斐波那契数列打印出数组中的所有值编辑

转载 作者:行者123 更新时间:2023-12-02 01:18:50 25 4
gpt4 key购买 nike

好吧,我的新问题是如何让数组打印出该段的所有数字。现在我可以输入一个数字,代码将打印出相应的斐波那契值。但是,我希望数组打印出导致答案的所有值。前任。输入 = 7,数组打印出 0, 1, 1, 2, 3, 5, 8 而不是 8

package math;
public class Fibonacci {
public static long getFib(int n) {
long Fibby[] = new long[n+1];
Fibby[0] = 1;
Fibby[1] = 1;
for(int i = 2; i<=n; i++) { //initialize loop
Fibby[i] = Fibby[i-1] + Fibby[i-2];
} // end of for loop
return Fibby[n]; //end method getfib
}
}

还有运行者

package math;


Scanner key = new Scanner(System.in);



Fibonacci f = new Fibonacci();
int p;
System.out.println("Fib value : ");
p = key.nextInt();

System.out.println( "Fib Value of "+ p +" :: " + f.getFib(p) );



}

怎么会发生这种事?我的问题已缩小。

最佳答案

您无法运行 main 方法,因为 System.out.println() 需要一个可以打印的参数。但是,您的 fib() 方法返回 void,因此没有任何内容可打印。将返回类型添加到您的 fib() 方法中,main() 中的错误将得到解决。以下是打印第 0 到 12 个斐波那契数列的演示:

FibonacciRunner.java

public class FibonacciRunner
{
public static void main(String[] args)
{
for(int i = 0; i <= 12; i++)
{
System.out.println(Fibonacci.fib(i));
}
for(int i = 0; i <= 12; i++)
{
System.out.println(Fibonacci.fibList(i));
}
}
}

Fibonacci.java

public class Fibonacci
{
public static long fib(int n)
{
long current = 0;
long next = 1;
for(int i = 0; i < n/2; i++)
{
current += next;
next += current;
}
return n % 2 == 0 ? current : next;
}
public static List<Long> fibList(int n)
{
List<Long> ret = new ArrayList<>(n == 0 ? List.of(0L) : List.of(0L, 1L));
long current = 0;
long next = 1;
for(int i = 0; i < n/2; i++)
{
current += next;
next += current;
if(i*2+1 <= n)
ret.add(current);
if(i*2+2 < n)
ret.add(next);
}
return ret;
}
}

输出:

0
1
1
2
3
5
8
13
21
34
55
89
144
[0]
[0, 1]
[0, 1, 1]
[0, 1, 1, 2]
[0, 1, 1, 2, 3]
[0, 1, 1, 2, 3, 5]
[0, 1, 1, 2, 3, 5, 8]
[0, 1, 1, 2, 3, 5, 8, 13]
[0, 1, 1, 2, 3, 5, 8, 13, 21]
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144]

关于java - 斐波那契数列打印出数组中的所有值编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58121224/

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