gpt4 book ai didi

javascript - 为什么循环的最后一步没有显示输出?

转载 作者:行者123 更新时间:2023-12-02 23:26:16 25 4
gpt4 key购买 nike

我编写了一个循环遍历数字 1 到 20 的代码。如果数字可以被 3 整除,则会打印“Julia”。如果数字能被 5 整除,则打印“James”。如果 number 能被 15 整除,则会打印“Julia-James”。但在最后一个数字 20 中,输出是数字而不是“James”。

var x = 1;
while (x < 20) {
x % 15 === 0 ? console.log('Julia-James') : x % 5 === 0 ? console.log('James') : x % 3 === 0 ? console.log('Julia') : console.log(x);
x++;
}
console.log(x);

我预计 20 的输出是“James”。但实际输出是数字本身。

最佳答案

当 x = 20 时,它将中断循环,因此它不会在 x = 20 时执行。此外,由于最后一行,它给出 20 作为输出 console.log(x); 请在下面找到正确的代码。

var x = 1;
while (x <= 20) {
x % 15 === 0 ? console.log('Julia-James') : x % 5 === 0 ? console.log('James') : x % 3 === 0 ? console.log('Julia') : console.log(x);
x++;
}

关于javascript - 为什么循环的最后一步没有显示输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56721846/

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