LintCode入门级-5

描述:
查找斐波纳契数列中第 N 个数。

所谓的斐波纳契数列是指:
前2个数是 0 和 1 。
第 i 个数是第 i-1 个数和第i-2 个数的和。
斐波纳契数列的前10个数字是:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34 ...

样例
给定 1,返回 0

给定 2,返回 1

给定 10,返回 34

实现:

public class Solution {
    /*
     * @param n: an integer
     * @return: an ineger f(n)
     */
    public int fibonacci(int n) {
        int f1=0;
        int f2=1;
        int result=0;
        int i;
        // write your code here
        if (n==1){
            result=0;
        }
        else if(n==2){result=1;}
        else{
            for (i=0;i

你可能感兴趣的:(LintCode入门级-5)