I need a simple method (JAVA) for rounding Euro cent in this mode:
- 1.00=1.00
- 1.01=1.00
- 1.02=1.00
- 1.03=1.05
- 1.04=1.05
- 1.05=1.05
- 1.06=1.05
- 1.07=1.05
- 1.08=1.10
- 1.09=1.10
- 1.10=1.10
Can anyone help me ? Thanks.
|
I need a simple method (JAVA) for rounding Euro cent in this mode:
Can anyone help me ? Thanks. |
|||||||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
|||||||||
|
|
In general: It is a bad idea to store money as floats/doubles, it only leads to disasters. If your numbers stay small enough you can make with storing the cent's as integers: 100, 101,... in your example. If it is possible that they will get too large use BigIntegers or sth equivalent. You can convert the way you want like this: subtract 1 (cent), divide by the granularity (5 cents in this case), add 1, multiply by the granularity. |
|||||||
|
|
I don't know the right java syntax but this should to the trick:
|
|||
|
|