js 打印星星金字塔

时间:2016-08-27 12:47:45   收藏:0   阅读:2039
 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                 

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!