Basic Java Programming

Implement a program that reads in a user password and verifies it meets the following criteria:

Is atleast 8 characters long
Contains atleast 1 lower letter character
Contains atleast 1 upper letter character
Contains atleast 1 numeric digit
Contains atleast 1 special character from the set: !#$%^& * (the AT symbol)
Does not contain the word “and” or the word “end”
Output a string that prompts the user for a password and include the requirements above in your output.

Output a str…

Leave a Reply

Your email address will not be published. Required fields are marked *