It's not terribly clean, but you could use indexOf() and check if it returns -1. Better than breaking out a loop.
The following code shows an example of a program that can read in a list of integers passed on the command line. It makes use of args.length to detect how many numbers have been passed. Read through ...
Do you need to know how to sort Java objects in a collection, array, or map? Here's how to use the Comparable and Comparator interfaces and avoid ClassCastExceptions. Programmers frequently need to ...