Skip to content

Instantly share code, notes, and snippets.

@dhust
Created August 1, 2013 19:25
Show Gist options
  • Save dhust/6134417 to your computer and use it in GitHub Desktop.
Save dhust/6134417 to your computer and use it in GitHub Desktop.
IO - Simple example
// Ask the person a question they need to respond to
System.out.print("What is your name: ");
// Create a Scanner object to allow input from the user
Scanner inputString = new Scanner(System.in);
// Use the Scanner object to save the user's response, and put it into a String variable
String name = inputString.next();
// Print using their response
System.out.print("Hello " + name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment