美文网首页
斐波那契数列

斐波那契数列

作者: idioitcbear | 来源:发表于2017-06-10 10:22 被阅读17次
package com.robert;
public class Main4 {
    public static void main(String[] args) {
        int f0 = 0, f1 = 1;
        int n = 6;
        System.out.println("第" + n + "项为" + getNumber(f0, f1, n));
    }

    private static int getNumber(int f0, int f1, int n) {
        int[] result = new int[n];
        result[0] = f0;
        result[1] = f1;
        for (int i = 2; i < n; i++) {
            result[i] = result[i - 1] + result[i - 2];
        }
        for (int j = 0; j < result.length; j++) {
            if (j == result.length - 1) {
                System.out.println(result[j]);
            } else {
                System.out.print(result[j] + ",");
            }
        }
        return result[n - 1];
    }
}

相关文章

网友评论

      本文标题:斐波那契数列

      本文链接:https://www.haomeiwen.com/subject/ycpqqxtx.html