Top "Rounding" questions

Rounding a numerical value means replacing it by another value that is approximately equal but has a shorter, simpler, or more explicit representation.

Rounding a number to the nearest 5 or 10 or X

Given numbers like 499, 73433, 2348 what VBA can I use to round to the nearest 5 or 10? or an arbitrary number? By 5: 499 -&…

vba rounding
How to Round to the nearest whole number in C#

How can I round values to nearest integer? For example: 1.1 => 1 1.5 => 2 1.9 => 2 "Math.Ceiling()" is not helping me. Any …

c# rounding
How to round a number to significant figures in Python

I need to round a float to be displayed in a UI. E.g, to one significant figure: 1234 -> 1000 0.12 …

python math rounding
Rounding BigDecimal to *always* have two decimal places

I'm trying to round BigDecimal values up, to two decimal places. I'm using BigDecimal rounded = value.round(new MathContext(2, RoundingMode.…

java math bigdecimal rounding
Android - Round to 2 decimal places

Possible Duplicate: Round a double to 2 significant figures after decimal point I know that there are plenty of examples on …

android double decimal rounding
Getting only 1 decimal place

How do I convert 45.34531 to 45.3?

python rounding
How can I round down a number in Javascript?

How can I round down a number in JavaScript? math.round() doesn't work because it rounds it to the nearest …

javascript math rounding
In jQuery, what's the best way of formatting a number to 2 decimal places?

This is what I have right now: $("#number").val(parseFloat($("#number").val()).toFixed(2)); It looks messy to me. I don't …

javascript jquery rounding decimal-point number-formatting
How to round up a number in Javascript?

I want to use Javascript to round up a number. Since the number is currency, I want it to round …

javascript rounding
Java BigDecimal: Round to the nearest whole value

I need the following results 100.12 -> 100.00 100.44 -> 100.00 100.50 -> 101.00 100.75 -> 101.00 .round() or .setScale() ? How do I go …

java rounding bigdecimal