码迷,mamicode.com
首页 > 编程语言 > 详细

C#递归算法

时间:2018-01-30 19:56:50      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:static   public   int   col   gpo   pos   post   fun   nbsp   

public static int fun(int i)
{
    if (i<=0)
    {
        return 0;
    }
    else if (i>0&&i<=2)
    {
        return 1;
    }
    else
    {
        return fun(i - 1) + fun(i - 2);
    }
}

//直接调用fun(8)

       

 

C#递归算法

标签:static   public   int   col   gpo   pos   post   fun   nbsp   

原文地址:https://www.cnblogs.com/AlexOneBlogs/p/8386269.html

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