c_cpp 斐波那契数列的.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 斐波那契数列的.cpp相关的知识,希望对你有一定的参考价值。

//大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。
//n<=39



int Fibonacci(int n) {
	if(n == 0)
	    return 0;
	if(n == 1)
	    return 1;
	int num1 = 0, num2 = 1;
	int numLast;
	for(int i=2; i<=n; ++i) {
	    numLast = num1+num2;
	    num1 = num2;
	    num2 = numLast;
	}
	return numLast;
}

以上是关于c_cpp 斐波那契数列的.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 斐波那契

c_cpp 斐波那契

c_cpp 斐波那契系列

c_cpp 斐波那契尾递归

bzoj 3657 斐波那契数列(fib.cpp/pas/c/in/out)

斐波那契数列