Guest User

Untitled

a guest
Mar 4th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {
  2. String username;
  3. String password;
  4. System.out.println("Enter a username:");
  5. Scanner reader = new Scanner(System.in);
  6. username = reader.nextLine();
  7. System.out.println("please enter your password whitch is at least 8 characters");
  8. password = reader.nextLine();
  9. while(password.length() > 8)
  10. {
  11. System.out.println("if there is not 8 characters start again");
  12. System.out.println("Enter a password that is at least 8 characters:");
  13. password = reader.nextLine();
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment