How do I round a double to 5 decimal places, without using DecimalFormat?
|
|
You can round to the fifth decimal place by making it the first decimal place by multiplying your number. Then do normal rounding, and make it the fifth decimal place again. Let's say the value to round is a
If you want to round to 6 decimal places, let |
|||
|
|
|
|
If you are okay with external libraries, you can have a look at microfloat, specifically MicroDouble.toString(double d, int length). |
||
|
|
|
|
Whatever you do, if you end up with a If you really want exact decimal values, you should use |
||
|
|
|
|
Multiply by 100000. Add 0.5. Truncate to integer. Then divide by 100000. Code:
|
||
|
|
|
|
Try the following
Or if you want minimal amount of code Use import static
And
regards, |
||
|
|
|
|
Thats the way, without any lib. |
||||||||||||||||
|
|
|
|
||
|
|
