码迷,mamicode.com
首页 > 其他好文 > 详细

斐波那契

时间:2015-12-28 23:36:47      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。
 
 
public class Solution {
    public int Fibonacci(int n) {
        int target=0;
        if(n==0)
            return 0;
        if(n==1)
            return 1;
        int one=0;
        int two=1;
        for(int i=2;i<=n;i++){
            target=one+two;
            one=two;
            two=target;
        }
        return target;
 
    }
}

斐波那契

标签:

原文地址:http://www.cnblogs.com/bb3q/p/5084170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!