// 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.
![]() |
and suggestions to improve this page to Roedy Green : | ||
| Canadian Mind Products | |||
| mindprod.com IP:[65.110.21.43] | |||
| Your face IP:[38.103.63.59] | ![]() | ||
| You are visitor number 11. | |||
| 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/biggest.html | J:\mindprod\jgloss\biggest.html | ||