获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
// 999=900,1001=1000,1999.9=1900 function fun(arg){ return parseInt(arg/100) * 100 } console.log(fun(999))
计算取整问题?我的output 结果因为是除法的问题,会遇到非整数的情况。 我不知道应该怎么样让结果取百位数整数。 如:999=900,1001=1000,1999.9=1900 const mvinput = this.data.mv; const cpinput = this.data.cp; const targetquantity = computetaq (mvinput, cpinput) const computetaq= function (mvinput, cpinput){ return Number (mvinput)/ Number (cpinput) }
2020-12-22