I want to round the number 1732 to the nearest ten, hundred and thousand. I tried with Math round functions, but it was written only for float and double. How to do this for Integer? Is there any function in java?
|
Use Precision (Apache Commons Math 3.1.1)
Use MathUtils (Apache Commons Math) - Older versions
scale - The number of digits to the right of the decimal point. (+/-)
Better solution
|
||||
|
|
|
What rounding mechanism do you want to use? Here's a primitive approach, for positive numbers:
This will bring something like 1499 to 1000 and 1500 to 2000. If you could have negative numbers:
|
|||||||||||
|
|
|||||
|
|
You could try:
The result will be 1730. Edit: This doesn't answer the question. It simply removes part of the number but doesn't "round to the nearest". |
|||||||||||||||||||
|
|
At nearest ten:
(Add zero's at will for hundred and thousand). |
|||
|
|
|
why not just check the unit digit... 1. if it is less than or equal to 5, add 0 at the unit position and leave the number as it is. 2. if it is more than 5, increment the tens digit, add 0 at the unit position. ex: 1736 (since 6 >=5) the rounded number will be 1740. now for 1432 (since 2 <5 ) the rounded number will be 1430.... I hope this will work... if not than let me know about those cases... Happy Programming, |
|||
|
|
|
very simple. try this
Now in this you can replace 10 by 100,1000 and so on.... |
|||
|
|
Its very easy.. int x = 1234; int y = x - x % 10; //It will give 1230 int y = x - x % 100; //It will give 1200 int y = x - x % 1000; //It will give 1000 The above logic will just convert the last digits to 0. If you want actual round of// For eg. 1278 this should round off to 1280 because last digit 8 > 5 for this i wrote a function check it out.
Here pass 2 parameters one is the number and the other is position till which you have to round off. Regards, Abhinav |
|||
|
|
|
Have you looked at the implementation of Mathutils.round() ? It's all based on BigDecimal and string conversions. Hard to imagine many approaches that are less efficient. |
|||
|
|