Use a BigDecimal
instead of float
/double
. There are a lot of numbers which can't be represented as binary floating point (for example, 0.1
). So you either must always round the result to a known precision or use BigDecimal
.
See http://en.wikipedia.org/wiki/Floating_point for more information.