rounding math
i know this will seem trivial, but can someone show me how to use the math function for rounding?
i need to round for a monetary program...
instead of 67.89999999999999
you could either truncate it to
67.89
or round it to 67.90
either way, i need to know how to do this.
ive tried to figure this out using the java math methods site:
http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Math.html
but still no luck.

