答案 0 :(得分:0)
使用此
function multiply (a, b) {
exp = b.toString().length - 2;
function makeInt (num) {
return num * Math.pow(10, exp);
}
function makeFloat(num) {
return num / Math.pow(100, exp);
}
return makeFloat(makeInt(a) * makeInt(b));
}
var result = multiply(38.8,3)
console.log(result);
答案 1 :(得分:0)
使用Math.ceil(38.8 * 3)或Math.floor(38.8 * 3)
答案 2 :(得分:0)
你可以使用
parseFloat((38.8*3).toFixed(2))