Skip to content

Instantly share code, notes, and snippets.

@mojaie
Created November 28, 2011 08:22
Show Gist options
  • Save mojaie/1399595 to your computer and use it in GitHub Desktop.
Save mojaie/1399595 to your computer and use it in GitHub Desktop.
Example:Scanner.nextLine
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println(“文字列を入力してください。”);
String str = in.nextLine();
System.out.println(“入力した文字列は ” + str + ” です。”);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment