首页 > 代码库 > js 打印星星金字塔

js 打印星星金字塔

 1             /** 2              *  3              * 第一行:     * 4              * 第二行:    *** 5              * 第三行:   *****  6              * 第四行:  ******* 7              * 第五行:  ********* 8              *  9              */10             document.write(‘<p align="center">‘);11             for (var i=1;i<=5;i++) {12                 for(var j=1;j<=2*i-1;j++){13                     document.write("*");14                 }15                 document.write("<br/>");16             }17             document.write(‘</p>‘);18                 

 

js 打印星星金字塔