Getting User Input

Lesson 9
Author : Afrixi
Last Updated : October, 2017


Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

System.out.print("Enter username: "); String username = keyboardInput.nextLine(); // .nextDouble(), .nextInt() System.out.println("Hello, " + username);