gpt4 book ai didi

javascript - 在 JavaScript 中打印二维

转载 作者:行者123 更新时间:2023-11-28 16:04:58 24 4
gpt4 key购买 nike

我想在 JavaScript 中输出类似的内容。

*
**
***
****
*****

我正在努力

<script type="text/javascript" language="javascript">
var i ,j ;

for(i=1;i<=6;i++){
for(j=1;j<=6;j++){
document.write('*');
document.write('<br>');
}
document.write('<br>');
}
</script>

这个代码肯定不能按照我需要的方式工作..我对如何打印 * 感到困惑按照我要求的方式...

最佳答案

将内循环更改为

for (j=1; j<=i; j++) {
^--- the important bit
document.write('*');
}
document.write('<br>');

这样,内部循环将打印最多 i* 字符,而外部循环会在完成 6 行后停止操作。例如

i | j     | printed
-------------------
1 | 1 | *
2 | 1,2 | **
3 | 1,2,3 | ***
etc...

关于javascript - 在 JavaScript 中打印二维,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15421506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com