好的,我正在處理循環分配問題。 我應該爲前4個循環使用「while」循環,剩下的15個循環使用「for」循環。問題是while循環中的第一個4按順序正確地按照它們應該按順序正確地打印到控制檯。Javascript以循環間隔循環播放
其餘15只打印到控制檯奇數間隔IE:「5,7,9,11 ......」
這有什麼錯我的for循環?
var currentGen = 1;
var totalGen = 19;
var totalMW = 0;
while(currentGen <= 4){
console.log("Generator #" + currentGen + " is on, adding 62 MW, for a total of " + (totalMW = totalMW + 62) + " MW!");
currentGen++;
}
for(currentGen = 5; currentGen < 20; currentGen = currentGen + 1){
console.log("Generator #" + currentGen + " is on, adding 62 MW, for a total of " + (totalMW = totalMW + 124) + " MW!");
currentGen++;
}