Getting User Input
Lesson 9Author : GOUP
Last Updated : September, 2020
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);