如何在JavaScript中舍入数字?


159

我想用Javascript舍入一个数字。由于数字是货币,因此我希望像以下示例一样将其舍入(小数点后两位):

  • 192.168 => 192.20
  • 192.11 => 192.20
  • 192.21 => 192.30
  • 192.26 => 192.30
  • 192.20 => 192.20

如何使用Javascript实现呢?内置的Javascript函数将根据标准逻辑对数字进行四舍五入(四舍五入不超过5)。

Answers:


313
/**
 * @param num The number to round
 * @param precision The number of decimal places to preserve
 */
function roundUp(num, precision) {
  precision = Math.pow(10, precision)
  return Math.ceil(num * precision) / precision
}

roundUp(192.168, 1) //=> 192.2

2
@AndrewMarshall乘以然后除以10的目的是什么?
codecowboy

6
@codecowboy如果您不这样做,那么ceil()它将为您提供193,因此我们必须确保要保留的所有精度都在小数点之前。然后,我们进行逆运算以恢复“原始”值。
Andrew Marshall

1
如果你得到一些数字,如192.19999999999997,你可以申请.toFixed(1)num
flamer.ohr

4
对于那些想知道如何舍入到最接近的整数的人,您只需要Math.ceil()。剩下的只是处理小数。为了节省别人的时间,我花了很多时间去做!
Nigel B. Peck

该解决方案存在错误:Math.ceil(0.0159 * 1000000000)/ precision。您将得到分数0.015900001。需要添加范围验证以提高精度。
弗兰克(Frank)

26

有点晚了,但是可以为此目的创建可重用的javascript函数:

// Arguments: number to round, number of decimal places
function roundNumber(rnum, rlength) { 
    var newnumber = Math.round(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

将该函数称为

alert(roundNumber(192.168,2));

2
这很好用,但是OP询问如何舍入一个数字,因此此处应使用Math.ceil而不是Math.round。
kloddant

如果您要舍入为小数点后的位数,则此答案要好于可接受的答案。例如:1.054-> 1.05 1.055-> 1.06但是,这是一个极端情况:1.005-> 1 1.006-> 1.01和1.015-> 1.01 1.016-> 1.02所以要小心。
杰伊K

21

正常舍入将进行一些小的调整:

Math.round(price * 10)/10

如果要保留货币格式,可以使用Number方法 .toFixed()

(Math.round(price * 10)/10).toFixed(2)

虽然这会使它成为String =)


Math.round(192.11 * 100)/ 100-> 192.11
krtek

1
第二个不需要四舍五入,更像是price.toFixed(2)
Michael Krelin-黑客

@Krtek糟糕,谢谢您的接班。我看错了问题。答案已更新。
Shad

2
OP询问如何舍入一个数字,因此此处应使用Math.ceil代替Math.round。
kloddant

10

非常接近TheEye答案,但我做了一些改动以使其正常工作:

var num = 192.16;
    
console.log(    Math.ceil(num * 10) / 10    );


2

OP预计有两件事:
A.向上取整至十分之一,
B。在百分数处显示零(货币的典型需求)。

满足这两个要求似乎需要针对上述每个方法使用单独的方法。这是一种基于suryakiran建议答案的方法:

//Arguments: number to round, number of decimal places.

function roundPrice(rnum, rlength) {
    var newnumber = Math.ceil(rnum * Math.pow(10, rlength-1)) / Math.pow(10, rlength-1);
    var toTenths = newnumber.toFixed(rlength);
    return toTenths;
}

alert(roundPrice(678.91011,2)); // returns 679.00
alert(roundPrice(876.54321,2)); // returns 876.60

重要说明:此解决方案使用负数和指数产生的结果截然不同。

为了比较这个答案和两个非常相似的答案,请参阅以下两种方法。通常,第一个简单地四舍五入到最接近的百分之一,第二个简单地四舍五入到最接近的百分之一(更大)。

function roundNumber(rnum, rlength) { 
    var newnumber = Math.round(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

alert(roundNumber(678.91011,2)); // returns 678.91

function ceilNumber(rnum, rlength) { 
    var newnumber = Math.ceil(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

alert(ceilNumber(678.91011,2)); // returns 678.92

2

好的,已经回答了,但是我想您可能想看看我的答案,它一次调用了math.pow()函数。我想我喜欢保持干燥。

function roundIt(num, precision) {
    var rounder = Math.pow(10, precision);
    return (Math.round(num * rounder) / rounder).toFixed(precision)
};

有点把所有东西放在一起。用Math.ceil()替换Math.round()进行四舍五入而不是四舍五入,这是OP想要的。


1

此函数限制无小数的小数

function limitDecimal(num,decimal){
     return num.toString().substring(0, num.toString().indexOf('.')) + (num.toString().substr(num.toString().indexOf('.'), decimal+1));
}

作为更短的选择:return(''+ num).split('。')。shift()
Roberto

感谢罗伯托(Roberto)此代码工作,但删除了所有小数
Behnam Mohammadi 2015年

0

我已经使用@AndrewMarshall回答很长时间了,但是发现了一些极端情况。以下测试未通过:

equals(roundUp(9.69545, 4), 9.6955);
equals(roundUp(37.760000000000005, 4), 37.76);
equals(roundUp(5.83333333, 4), 5.8333);

这是我现在用来使汇总正确运行的内容:

// Closure
(function() {
  /**
   * Decimal adjustment of a number.
   *
   * @param {String}  type  The type of adjustment.
   * @param {Number}  value The number.
   * @param {Integer} exp   The exponent (the 10 logarithm of the adjustment base).
   * @returns {Number} The adjusted value.
   */
  function decimalAdjust(type, value, exp) {
    // If the exp is undefined or zero...
    if (typeof exp === 'undefined' || +exp === 0) {
      return Math[type](value);
    }
    value = +value;
    exp = +exp;
    // If the value is not a number or the exp is not an integer...
    if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
      return NaN;
    }
    // If the value is negative...
    if (value < 0) {
      return -decimalAdjust(type, -value, exp);
    }
    // Shift
    value = value.toString().split('e');
    value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
    // Shift back
    value = value.toString().split('e');
    return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
  }

  // Decimal round
  if (!Math.round10) {
    Math.round10 = function(value, exp) {
      return decimalAdjust('round', value, exp);
    };
  }
  // Decimal floor
  if (!Math.floor10) {
    Math.floor10 = function(value, exp) {
      return decimalAdjust('floor', value, exp);
    };
  }
  // Decimal ceil
  if (!Math.ceil10) {
    Math.ceil10 = function(value, exp) {
      return decimalAdjust('ceil', value, exp);
    };
  }
})();

// Round
Math.round10(55.55, -1);   // 55.6
Math.round10(55.549, -1);  // 55.5
Math.round10(55, 1);       // 60
Math.round10(54.9, 1);     // 50
Math.round10(-55.55, -1);  // -55.5
Math.round10(-55.551, -1); // -55.6
Math.round10(-55, 1);      // -50
Math.round10(-55.1, 1);    // -60
Math.round10(1.005, -2);   // 1.01 -- compare this with Math.round(1.005*100)/100 above
Math.round10(-1.005, -2);  // -1.01
// Floor
Math.floor10(55.59, -1);   // 55.5
Math.floor10(59, 1);       // 50
Math.floor10(-55.51, -1);  // -55.6
Math.floor10(-51, 1);      // -60
// Ceil
Math.ceil10(55.51, -1);    // 55.6
Math.ceil10(51, 1);        // 60
Math.ceil10(-55.59, -1);   // -55.5
Math.ceil10(-59, 1);       // -50

来源:https : //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round


1
您的测试用例似乎不正确。roundUp(37.760000000000005, 4)应该是37.7601roundUp(5.83333333, 4)应该是5.8334。对于我提供的fn,这两个(也是您的第一个)都成立。
安德鲁·马歇尔

@AndrewMarshall有理由,你的期望值是错误的情况下2和3
安姆

-3

parseInt总是四舍五入.....

console.log(parseInt(5.8)+1);

做parseInt()+ 1

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.