黑马程序员技术交流社区
标题: 使用javascript输出金字塔 [打印本页]
作者: LiuKang 时间: 2013-11-22 10:31
标题: 使用javascript输出金字塔
写了一个javascript的小练习,实现金字塔的输出,使用了for循环语句,关键在于for循环中各个数值的计算,还有就是空格的输出,使用 貌似是最正宗的。
代码如下:
[html]view plaincopyprint?
1 <html>
2 <head>
3 <script>
4
5 var a = window.prompt("请输入一个数");
6 for(var b = 1; b <= a; b++) {
7 for(var c = (a - b) * 2; c >= 0; c--) {
8 document.write(" ");
9 }
10 for(var d = 1; d <= b * 2 - 1; d++) {
11 document.write("*" + " ");
12
13 }
14 document.write("<br/>");
15 }
16 </script>
17 </head>
18 <body>
19 </body>
20 </html>
效果图为:
file:///C:/Users/liukang/AppData/Local/Temp/ksohtml/wps_clip_image-14768.png
file:///C:/Users/liukang/AppData/Local/Temp/ksohtml/wps_clip_image-25174.png
作者: che201311 时间: 2013-11-22 17:27
大哥 你传的效果图怎么能看见呢 我给你个正确的
html>
<head>
<script>
var a = window.prompt("请输入一个数");
for(var b = 1; b <= a; b++) {
for(var c = (a - b) * 2; c >= 0; c--) {
document.write(" ");
}
for(var d = 1; d <= b * 2 - 1; d++) {
document.write("*" + " ");
}
document.write("<br/>");
}
</script>
</head>
<body>
</body>
</html>
作者: LiuKang 时间: 2013-11-22 22:40
谢谢你啊,操作失误了。。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |