为了账号安全,请及时绑定邮箱和手机立即绑定

我如何从循环中获取数组?

我如何从循环中获取数组?

RISEBY 2023-03-10 16:07:19
大家好,你能帮我计算步数吗?在此处输入图像描述function getPlan(currentProduction, months, percent) {  // write code here  let sum = 0;  for(let i = 0; i < months; i++){    let workCalculate = currentProduction * percent / 100;    sum *= workCalculate;  }  return Math.floor(sum);}示例:getPlan(1000, 6, 30) === [1300, 1690, 2197, 2856, 3712, 4825] getPlan(500, 3, 50) === [750, 1125, 1687]
查看完整描述

3 回答

?
隔江千里

TA贡献1906条经验 获得超10个赞

只需将每次迭代推送到一个数组并返回该数组。


function getPlan(currentProduction, months, percent) {

  // write code here

  // starting at currentProduction

  let sum = currentProduction;

 

  // output

  let output = [];

  

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

    // progressive from sum and not from currentProduction

    let workCalculate = sum * percent / 100;

  

    sum += Math.floor(workCalculate);

    output.push(sum)

  };

  

  return output

};


console.log(getPlan(1000, 6, 30))

console.log(getPlan(500, 3, 50))


查看完整回答
反对 回复 2023-03-10
?
慕慕森

TA贡献1856条经验 获得超17个赞

目前你的方法返回一个数字,而不是一个数组。你到底需要什么?您需要它返回一个数组,还是只想查看循环内计算的中间值?


在第一种情况下,创建一个空数组并在循环的每一步中添加您想要的值:


function getPlan(currentProduction, months, percent) {

  // write code here

  let sum = 0;

  var result= [];


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

    let workCalculate = currentProduction * percent / 100;

    sum *= workCalculate;

    result.push(sum);

  }


  return result;

}

在第二种情况下,您有两个选择:

  • 添加一个console.log,以便将值打印到控制台。

  • 添加一个断点,以便代码在该处停止,您可以看到变量的值并逐步执行程序。

这有点含糊,因为您的需求不清楚,希望对您有所帮助!


查看完整回答
反对 回复 2023-03-10
?
森栏

TA贡献1810条经验 获得超5个赞

function getPlan(currentProduction, months, percent) {

  var plan=[];

  var workCalculate=currentProduction;

  

  for(var i=0; i<months; i++) {

    workCalculate*=(1+percent/100);

    plan.push(Math.floor(workCalculate));

  }

  

  return plan;

}


console.log(getPlan(1000, 6, 30));

console.log(getPlan(500, 3, 50));

.as-console-wrapper { max-height: 100% !important; top: 0; }


查看完整回答
反对 回复 2023-03-10
  • 3 回答
  • 0 关注
  • 105 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信