Getting User Input
Lesson 9Author : 🦒
Last Updated : October, 2017
System.out.print("Enter username: "); String username = keyboardInput.nextLine(); // .nextDouble(), .nextInt() System.out.println("Hello, " + username);
System.out.print("Enter username: "); String username = keyboardInput.nextLine(); // .nextDouble(), .nextInt() System.out.println("Hello, " + username);