使用JS 递归函数 输出 斐波那契数列 (return 返回值使用时的注意点 )


 
 
function aee(i){
    if( i == 0 ){
        return 0;
    }
    if ( i == 1 ){
        return 1;
    }
    if( i >= 2){
 
  ***
//     return aee(i) = aee(i – 1) + aee(i – 2);           卧槽return  只能是表达式   一定要记住使用原则
  ****
 
        return aee( i – 1) + aee ( i – 2);
    }
   
}
for( var j = 0 ; j < 10 ; j++){
    console.log(aee(j));
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281176.html

(0)
上一篇 2022年8月20日
下一篇 2022年8月20日

相关推荐

发表回复

登录后才能评论