Guest User

Untitled

a guest
Jul 17th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3.  
  4. public class UI {
  5. public static void main(String[] args)
  6. {//TODO move this shit out of main
  7. System.out.println("Welcome to the pr2 chat program, designed by nikc10");
  8. Scanner consoleRunner = new Scanner(System.in);
  9. System.out.print("Please enter your username:");
  10. String userName = consoleRunner.nextLine();
  11. //add in name size checker
  12. System.out.print("Please enter your password:"); //Find out how to make stars?
  13. String password = consoleRunner.nextLine();
  14. System.out.println("Please enter the server that you wish to join:");
  15. String serverName = consoleRunner.nextLine().toLowerCase();
  16. String[] serverList = {"derron", "carina", "grayan", "fitz", "loki", "promie", "morgana", "andres"};
  17.  
  18. }
  19. }
Add Comment
Please, Sign In to add comment