斐波那契数列-递归版

前端小白 前端 工具 2020-08-03
function fib(n){
  if(n == 1 || n == 0) return 1
  return fib(n - 1) + fib(n - 2)
}
Apipost 私有化火热进行中

评论