JS递归,对称美

2021-07-09 06:07

阅读:316

标签:document   style   function   cti   --   span   doc   color   code   

function show(n) {
            document.write(n + "\t");
            if (n > 0) {
                show(n - 1);
            } else {
                document.write("");
            }
            document.write(n + "\t");
        }
        show( 4 );
    

 

JS递归,对称美

标签:document   style   function   cti   --   span   doc   color   code   

原文地址:http://www.cnblogs.com/seedclang/p/7094791.html

上一篇:JS水仙花数

下一篇:Hibernate 初体验


评论


亲,登录后才可以留言!