JackHoughton00

Untitled

Mar 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. package accountsetup;
  2. import java.util.Scanner;
  3.  
  4. public class AccountSetup {
  5.  
  6. public static void main(String[] args) {
  7. Scanner input = new Scanner(System.in);
  8. String userName,password;
  9. System.out.print("Enter a username:");
  10. userName = input.nextLine();
  11. System.out.print("Enter a password that is at least eight characters:");
  12. password = input.nextLine();
  13. int len = password.length();
  14. do {
  15. System.out.print("Enter a password that is at least eight characters:");
  16. password = input.nextLine();
  17. len = password.length();
  18. } while (len <8);
  19. if (len >=8){
  20. System.out.print("Your username is "+userName+" and your password is "+password);
  21. }}}
Add Comment
Please, Sign In to add comment