InputTest.java


import java.util.*;

/**
 * This program demonstrates console input.
 * @version 1.10 2004-02-10
 * @author Cay Horstmann
 */
public class InputTest
{
   public static void main(String[] args)
   {
      Scanner in = new Scanner(System.in);

      // get first input
      System.out.print("What is your name? ");
      String name = in.nextLine();

      // get second input
      System.out.print("How old are you? ");
      int age = in.nextInt();

      // display output on console
      System.out.println("Hello, " + name + ". Next year, you'll be " + (age + 1));
   }
}


Results

Reference

Cay S. Horstmann and Gary Cornell Core Java, Volume I – Fundamentals (10th Edition)
Prentice Hall, 2015. chapter 3


Maintained by John Loomis, updated Mon Sep 02 11:33:57 2013