Skip to content

Instantly share code, notes, and snippets.

@msomu
Created October 31, 2014 12:05
Show Gist options
  • Select an option

  • Save msomu/52cb32195d3b3c3db7cc to your computer and use it in GitHub Desktop.

Select an option

Save msomu/52cb32195d3b3c3db7cc to your computer and use it in GitHub Desktop.
This code helps you to read a line from the user
hey now
hey now
import java.util.Scanner;
public class ReadInput {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println(sc.nextLine());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment