Home - Programming - Java- User Input

User Input

01/**
02 *  Application: User Input
03 *  Author: Brian SonniE
04 *  19/10/09
05 *   www.fluidcoding.com
06 */
07  
08 // An import statement is needed to access the Scanner class.
09// This will be used to accept user input.
10import java.util.Scanner;
11  
12public class UserInput {
13     
14    public static void main(String[] args) {
15        // Create a scanner object
16        Scanner keyboard = new Scanner(System.in);
17    // Ask the user his/her name
18        System.out.println("Enter Your Name: ");
19    // Get the user input as a string using the next method.
20        String yourName = keyboard.next();
21        // Print the welcome message.
22        System.out.println("Hello " + yourName +
23                            ", Welcome To FluidCoding.");
24    }
25}

Output

Enter Your Name:
Sonnie [User Input]

Hello Sonnie, Welcome To FluidCoding.
 

Ad Space

Ads