首页 > 其他 > 详细

斐波那契

时间:2015-12-28 23:34:37      阅读:259      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!