To find the largest of two ints use Math. max, e.g.
// finding the bigger of two ints int bigger = Math.max( a, b ); // also works with long, float and double e.g. double biggerDouble = Math.max( aDouble, bDouble );
To find the largest of three ints use Math. max, e.g.
// finding the bigger of three ints int biggest = Math.max( Math.max( a , b ), c ); // also works with long, float and double e.g. double biggestDouble = Math.max( Math.max( aDouble, bDouble ), cdouble );
To find the biggest of a set, you presume the first element is the biggest, and then look for an even bigger element.
|
|
You can get the freshest copy of this page from: | or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror) |
| http://mindprod.com/jgloss/biggest.html | J:\mindprod\jgloss\biggest.html | |
![]() | Please email your feedback for publication,
letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording,
broken/redirected link reports, suggestions to improve this page or comments to
Roedy Green :
| |
| Canadian Mind Products | ||
| mindprod.com IP:[65.110.21.43] | ||
| view Blog | Your face IP:[38.107.179.211] | |
| Feedback | You are visitor number 11. | |