第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何制作水平打印的for循環(huán)

如何制作水平打印的for循環(huán)

一只斗牛犬 2023-07-06 14:48:04
我想要一個(gè)打印 5 個(gè)垂直打印的隨機(jī)數(shù)的循環(huán)到目前為止我已經(jīng)...for(let i = 0; i < 5; i++ ) {let x = Math.floor(Math.random() * 10);console.log(x)}然后當(dāng)我運(yùn)行它時(shí),我得到了 5 個(gè)隨機(jī)數(shù),但我只是不知道如何水平打印它
查看完整描述

4 回答

?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個(gè)贊

通過(guò)水平打印,我假設(shè)您的意思是在同一行中。在這種情況下,您可以執(zhí)行上面提到的操作,或者您可以創(chuàng)建一個(gè)包含所有數(shù)字的字符串


let string = "";

for(let i = 0; i < 5; i++ ) {

   let x = Math.floor(Math.random() * 10);

   string = `${string} ${x.toString()}`;

}

console.log(string);


查看完整回答
反對(duì) 回復(fù) 2023-07-06
?
手掌心

TA貢獻(xiàn)1942條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以將它們?nèi)刻砑拥揭粋€(gè)大字符串中并在最后打??!


output = ''

for(let i = 0; i < 5; i++ ) {

    let x = Math.floor(Math.random() * 10);

    output = output + ' ' + x;

}

console.log(output);


查看完整回答
反對(duì) 回復(fù) 2023-07-06
?
慕尼黑的夜晚無(wú)繁華

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超6個(gè)贊

你可以這樣做。


var values=[];

for(let i = 0; i < 5; i++ ) {

   values.push(Math.floor(Math.random() * 10));

}

console.log(values);    //if you want to print an array

console.log(values.join()); //if you want to print as string with coma sepration

console.log(values.join(" ")); //if you want to print as string with empty spaces


查看完整回答
反對(duì) 回復(fù) 2023-07-06
?
開(kāi)心每一天1111

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超13個(gè)贊

取決于您想要的輸出格式,但您可以執(zhí)行以下操作:


let arr = [];

for (let i = 0; i < 5; i++) {

  let x = Math.floor(Math.random() * 10);

  arr.push(x)

  console.log(x)

}

console.log(...arr)


如果你想用逗號(hào)來(lái)實(shí)現(xiàn),你可以用 .map() 來(lái)實(shí)現(xiàn)。


let arr = [];

for (let i = 0; i < 5; i++) {

  let x = Math.floor(Math.random() * 10);

  arr.push(x);

  console.log(x);

}

const len = arr.length;

const commaArray = arr.map((x, i) => i < len - 1 ? x + ',' : x);

console.log(...commaArray);


查看完整回答
反對(duì) 回復(fù) 2023-07-06
  • 4 回答
  • 0 關(guān)注
  • 176 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)