akosiraff

Download PasswordVerify

Feb 19th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/passwordverify/
  3. Implement a program that uses the Scanner to read a user password and verifies it
  4. meets the following criteria:
  5. Is at least 7 characters long
  6. Contains at least 1 lower letter character
  7. Contains at least 1 upper letter character
  8. Contains at least 1 numeric digit
  9. Contains at least 1 special character from the set: !@#$%^&*
  10. Does not contain the String “text” or the String “book”
  11. Output a string that prompts the user for a password and include the requirements
  12. above in your output.
  13. Output a string that states valid or invalid. If invalid, state which rule above has not
  14. been met.
  15. Utilize the following functionality:
  16. indexOf
  17. Looping structure
  18. charAt()
  19. isDigit()
  20. isUpperCase()
  21. isLowerCase()
  22. and any additional functionality needed.
  23. 85%
  24. Download: http://solutionzip.com/downloads/passwordverify/
Add Comment
Please, Sign In to add comment