How to round in java towards zero?
So -1.9 becomes -1.0 and -0.2 becomes 0.0, 3.4 becomes 3.0 and so on.
Is Math.round() capable of doing this changing some parameters?
|
How to round in java towards zero? So -1.9 becomes -1.0 and -0.2 becomes 0.0, 3.4 becomes 3.0 and so on. Is |
|||
|
I do not believe that the standard library has such a function. The problem is that you are asking for very different behavior (mathematically speaking) depending on whether the number is larger or smaller than 0 (i.e. rounding up for negative values, rounding down for positive values) The following method could be used:
|
|||||
|
|
cast to long like this
|
|||||||||
|
|
Just casting to int will do that for you? Edit: If you want to retain a double this should work simply enough:
And just for the people who want branch free code and feel a bit more clever:
|
||||
|
Use Example :
|
|||||||||
|
|
Seems like you want to always round-down? You can use
|
|||||
|
|
|
|||
|
|
|
You also can try this:
|
|||
|
|
|
Use Math.floor. |
|||
|
x-x%1(in Java only) – tennenrishin Mar 11 at 13:35