Home - Programming - Java- User Input
User Input
This program shows you how to obtain input from the user in the form of a string.
02 | * Application: User Input |
03 | * Author: Brian SonniE |
10 | import java.util.Scanner; |
12 | public class UserInput { |
14 | public static void main(String[] args) { |
16 | Scanner keyboard = new Scanner(System.in); |
18 | System.out.println( "Enter Your Name: " ); |
20 | String yourName = keyboard.next(); |
22 | System.out.println( "Hello " + yourName + |
23 | ", Welcome To FluidCoding." ); |
Output
Enter Your Name:
Sonnie [User Input]
Hello Sonnie, Welcome To FluidCoding.