Skip to content

Instantly share code, notes, and snippets.

@tanakaedu
Last active October 7, 2015 04:38
Show Gist options
  • Save tanakaedu/3f4202094940818ccc7b to your computer and use it in GitHub Desktop.
Save tanakaedu/3f4202094940818ccc7b to your computer and use it in GitHub Desktop.
// in0930.java
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class in0930 {
public static void main(String[] args) throws Exception {
// paiza.ioでは、標準入力は、[入力]タブから読み込む
String input=new java.util.Scanner(
System.in).nextLine();
System.out.println("input="+input);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment