NoDups
 
This assignment is a basic Java intro. It only involves the use of one class and no object instantiation. The program reads 20 integers from the user (keyboard input), removes the duplicate numbers, and prints the results (to the screen). This is accomplished through the use of integer arrays and a string buffer. The string buffer is a temporary holding spot for the characters read from the keyboard. The buffer is converted to a string and finally to an integer, which is stored in the integer array.

by Brent R. Cooley