蓝桥杯|蓝桥杯--鲁卡斯队列

1.题目
【蓝桥杯|蓝桥杯--鲁卡斯队列】蓝桥杯|蓝桥杯--鲁卡斯队列
文章图片

2.思路 主要是求队列的数值 以前有的题用数组会溢出 我们利用替换 来解决
3.代码

public class J134 { public static void main(String[] args) { double a=1; double b=3; double c=0; for(int i=1; i<100; i++) { c=a+b; //if(String.format("%.6f",b/c)=="0.618034") { //System.out.println(i+2); //break; //} System.out.println(String.format("%1$.6f",b/c)+" "+c); a=b; b=c; } }}

4.方法是暴力的 没找到停止点 哎

    推荐阅读