㈠ java用递归编程求斐波那契数列第n项
套数学里的就是了 f(0) = 1, f(1) = 1, f(2) = 2, ...int fib(int i){ if( i < 2 ) return 1; // 递归结束的条件 return f(i -1) + f(i-2);}