用嵌套循环javascript绘制星星

发布于 2025-01-19 16:29:29 字数 442 浏览 2 评论 0原文

我需要编写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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文