好吧,顯然你不能將整數(shù)作為上標(biāo),因?yàn)樗且粋€(gè)數(shù)字。我需要你們。我如何從循環(huán)中取出整數(shù)并將其轉(zhuǎn)換為字符串,以便我可以 .sup() 它。我愿意使用數(shù)組。這是原件var n;for (let i = 0; i <= 31; i++) { n = Math.pow(2, i); document.write("2 ^ " + i + " = " + n + "<br>");} 這是一個(gè)數(shù)組(不起作用!)var n, myArray = [];for (let i = 0; i <= 31; i++) { myArray.push(Math.pow(2, i));}for (var j = 0; j <= 31; j++) { document.write("2" + myArray[j].sup() + " = " + n + "<br />");}想法?
在 For 循環(huán)上標(biāo)中生成整數(shù)
GCT1015
2023-07-29 16:35:27