Skip to content

Instantly share code, notes, and snippets.

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