gpt4 book ai didi

java - 仅斐波那契 For 循环

转载 作者:行者123 更新时间:2023-12-01 11:52:56 25 4
gpt4 key购买 nike

你好,我需要一些帮助来解决问题。我在这里看到很多其他人问过斐波那契,但你的解决方案对我和我的经验水平来说是不正确的。我的老师会知道我抄袭了,因为她没有复习过。什么是扫描仪?无论如何......所以我无法弄清楚这一点。

public class Fib2 {

public static void main(String[] args) {

int a = 1;
int b = 1;
int c = (a + b);

System.out.print(a + " ");

System.out.print(b + " ");

for (int i = 2; i <= 11; i++) {

System.out.print(c + " ");

c = (a + b);
a = b;
b = c;

}
}
}

所以我的输出是这样的:1 1 2 2 3 5 8 13 21 34 55 89我不需要第二个2,我不知道如何解决它。我已经把这东西操纵到死了。如果有第二双眼睛就好了,因为我无法弄清楚。

最佳答案

您正在打印然后分配,但您应该先分配然后打印。

所以移动你的c=(a+b);之前System.out.Println();然后b=a; a=c;

希望它对你有用!

关于java - 仅斐波那契 For 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28653248/

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