斐波拉契数列

August 18th, 2021 | 分类: 【案例】

斐波那契数列公式:

[latex]F(N)[/latex]

求 \(F(N)\) ,要计算N次:

\(f(0)=0\)
\(f(1)=1\)
\(f(n)=f(n-1)+f(n-2)\)