标签:ack javascrip 入参 ext head span type 大于 class
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript"> /* 7、创建一个函数来 输出下面的图形 要求:通过输入参数来控制图形的层数 如果传递的数大于9那么就显示9层 如果传递的数小于2那么就显示2层 */ function sjx(a) { if(a < 2) { a = 2; }else if (a > 9) { a = 9; } for(var i=a;i>=2;i--){ for(var j=1;j<=i;j++){ document.write(i); } document.write("<br/>"); } for(var i=1;i<(a+1);i++){ for(var j=1;j<=i;j++){ document.write(i); } document.write("<br/>"); } } sjx(22222); </script> </head> <body> </body> </html>
标签:ack javascrip 入参 ext head span type 大于 class
原文地址:http://www.cnblogs.com/czbkhzh/p/6143181.html