斐波那契数组-递归和循环实现
Posted Free Time Worker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了斐波那契数组-递归和循环实现相关的知识,希望对你有一定的参考价值。
static void Main(string[] args)
{
Console.WriteLine(getnumfor(100));
Console.ReadKey();
}
static long getnum(long index)
{
if (index==1||index==2)
{
return 1;
}
else
{
return getnum(index - 1) + getnum(index - 2);
}
}
static long getnumfor(long index)
{
if (index == 1 || index == 2)
{
return 1;
}
else
{
long one = 1; long two = 1;
for (long i = 3; i <= index; i++)
{
if (i == 3)
{
one = 1;
two = 1;
}
else
{
long temp = one;
one = two;
two = temp + two;
}
}
return one + two;
}
}
以上是关于斐波那契数组-递归和循环实现的主要内容,如果未能解决你的问题,请参考以下文章