剑指offer系列之七:斐波那契数列

题目描述

大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。

这题比较简单,直接AC代码如下:

package com.rhwayfun.offer;

public class Fibonacci {

    public int getN(int n){
        if(n == 0){
            return 0;
        }else if(n == 1){
            return 1;
        }

        int one = 1;
        int two = 0;
        int sum = 0;
        for (int i = 2; i <= n; i++) {
            sum = one + two;
            two = one;
            one = sum;
        }
        return sum;
    }

    public static void main(String[] args) {
        long a = new Fibonacci().getN(3);
        System.out.println(a);
    }
}
上一篇:剑指offer系列之二:字符串空格替换


下一篇:《树莓派开发实战(第2版)》——2.1 连接有线网络