zoukankan      html  css  js  c++  java
  • 斐波那契数

                       斐波那契数:

                1 1 2 3 5 8 13........

                第一项:1;

                第二项:1;

                第三项:第一项+第二项 f(2)+f(1);

                第四项:第三项+第二项 f(3)+f(2);

                第五项:第四项+第三项 f(4)+f(3);

                第n项:f(n-1)+f(n-2);

            static void Main(string[] args)

            {

                int a = num(6);

                Console.WriteLine(a);

                Console.ReadKey();

            }

            public static int num(int n)

            {

                if (n == 1 || n == 2)   

                {

                    return 1;

                }

                else

                {

                    return num(n - 1) + num(n - 2);

                }

            }

  • 相关阅读:
    2017.8.15
    2017.8.14
    2017.8.12
    2017.8.11
    2017.8.10
    IE9下透明度设置无效
    IE7不支持Z-index问题
    IE9下支持jQuery
    IE9下支持css3的方法
    oninput、onpropertychange和onchange
  • 原文地址:https://www.cnblogs.com/sky-wolf/p/7725438.html
Copyright © 2011-2022 走看看