クラス Input

java.lang.Object
  上位を拡張 Input

public class Input
extends java.lang.Object

標準入力読み込み用


コンストラクタの概要
Input()
           
 
メソッドの概要
static char readChar()
          文字読み込み(%c)
static double readDouble()
          数値読み込み(%f)
static int readInt()
          数値読み込み(%d)
static java.lang.String readString()
          文字列読み込み(%s)
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Input

public Input()
メソッドの詳細

readString

public static java.lang.String readString()
文字列読み込み(%s)

戻り値:
String

readChar

public static char readChar()
文字読み込み(%c)

戻り値:
char

readInt

public static int readInt()
数値読み込み(%d)

戻り値:
int

readDouble

public static double readDouble()
数値読み込み(%f)

戻り値:
double