用嵌套循环javascript绘制星星
我需要编写Pormogram,它将使用嵌套的依赖循环在下面绘制类似星星的图:
*
**
***
****
*****
我在下面编写了代码,它在控制台中起作用,但在测试中我接收信息:您尚未使用嵌套和依赖(!)进行循环。您能帮助并解释我做错了什么吗?
const n = 5
let stars = "";
for (let i = 0; i < n; i++) {
stars = "";
for (let j = i; j < n; j++) {
stars = "*" + stars;
}
console.log(stars);
}
I need to write porogram that will draw starslike below using nested depend loops:
*
**
***
****
*****
I wrote code below and it works in console but in test I receive information:You have not used nested and dependent(!) for loops. Can you help and explain what I'm doing wrong?
const n = 5
let stars = "";
for (let i = 0; i < n; i++) {
stars = "";
for (let j = i; j < n; j++) {
stars = "*" + stars;
}
console.log(stars);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论