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

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

在javascript中打印數(shù)字序列

在javascript中打印數(shù)字序列

牧羊人nacy 2023-10-14 18:23:44
我確信這是一個(gè)非常簡(jiǎn)單的編程問題,但是我似乎無法理解它......我試圖讓 console.log 打印出這樣的數(shù)字 - 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 - 每行一個(gè)。我認(rèn)為可以使用模來實(shí)現(xiàn)這一點(diǎn),但是,我似乎不知道如何使用它。這是代碼:iteration = 16;for (var i = 0; i < iteration; i++) {    if(i == iteration%4 )    console.log(i);}
查看完整描述

2 回答

?
FFIVE

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

是的,您需要一個(gè)循環(huán)。

不,您不需要余數(shù)運(yùn)算符%。這會(huì)給你

0?1?2?3?0?1?2?3?...

但您可以將實(shí)際值除以4并取整數(shù)值console.log

const iteration = 16;


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

? ? console.log(Math.floor(i / 4) + 1); // offset for starting with 1

}


查看完整回答
反對(duì) 回復(fù) 2023-10-14
?
海綿寶寶撒

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

我建議您使用兩個(gè)嵌套的 for 循環(huán),一個(gè)用于行,另一個(gè)用于列。


這是我將如何做的一個(gè)例子:


const columns = 4;

const rows = 4;


//if you want to just console.log each number on a different line

for (let i = 1; i <= rows; i++) {

  for (let j = 1; j <= columns; j++) {

    console.log(i);

  }

  console.log("\n");

}


//if you want to add each number to an array, and then log the array

for (let i = 1; i <= rows; i++) {

  let columnsArray = [];

  columnsArray.length = columns;

  columnsArray.fill(i);

  console.log(columnsArray);

}


//if you want to just log the numbers, you can spread the array

for (let i = 1; i <= rows; i++) {

  let columnsArray = [];

  columnsArray.length = columns;

  columnsArray.fill(i);

  console.log(...columnsArray);

}


//or you could push the arrays in another one, and get a matrix!

const matrix = [];

for (let i = 1; i <= rows; i++) {

  let columnsArray = [];

  columnsArray.length = columns;

  columnsArray.fill(i);

  matrix.push(columnsArray);

}

console.log(matrix);


不清楚你想要的輸出,所以我有點(diǎn)偏離主題,并為我想到的不同情況做了一個(gè)例子。


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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