Skip to content

Instantly share code, notes, and snippets.

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