The password generator will create a random password of a length from 5 to 8 characters long.
The passwords generated will not contain characters that can easily be confused.
Examples:
Use the Java Random( ) class example below to see the syntax of the Random ( ) class
This class will not display any data
HAS-A: attributes -- All instance variables are private
rn a Random number generator
RESPONDS-TO:
The constructor will start the random number generator
METHODS:
nextPassword( )
will return a password 5 to 8 characters long
nextLetter()
will return a random acceptable character for the password
In nextPassword()
In nextLetter()