round : Java Glossary

go to home page R words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish 2007-09-06 by Roedy Green ©1996-2009 Canadian Mind Products
index page for letter ⇒ punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
round
To take a float or double and want the corresponding integer (possibly as a float, double, int or long) there are five basic algorithms you might use: round, ceil, floor, truncate and cover. In elementary school you learned that rounding always involves 0.5. Java and the IEEE use the term in a more general sense to describe any way a number is converted from floating point to integer.

DecimalFormat automatically rounds output to the displayed number of decimal places, so there is nothing to do if you are rounding simply to make output look pretty.

Round Rounding Gotcha
Ceiling Rounding to a Multiple
Floor Rounding Currency
Truncate Links
Cover

Rounding Gotcha

Rounding to a Multiple

// rounding m up to next highest multiple of n
int ceil = ( m + n - 1 ) / n * n;

// rounding m down to multiple of n
int floor = m / n * n;

// rounding m to nearest multiple of n
int near = ( m + n/2 ) / n * n;

Rounding Currency


CMP homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.58]
You are visitor number 82,727.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/round.html J:\mindprod\jgloss\round.html