JS递归,对称美
2021-07-09 06:07
                         标签:document   style   function   cti   --   span   doc   color   code      JS递归,对称美 标签:document   style   function   cti   --   span   doc   color   code    原文地址:http://www.cnblogs.com/seedclang/p/7094791.htmlfunction show(n) {
            document.write(n + "\t");
            if (n > 0) {
                show(n - 1);
            } else {
                document.write("");
            }
            document.write(n + "\t");
        }
        show( 4 );
    
上一篇:JS水仙花数
下一篇:Hibernate 初体验