?? myinput.java
字號:
// MyInput.java: Contain the methods for reading int, double, and
// string values from the keyboard
import java.io.*;
public class MyInput
{
// Read a string from the keyboard
public static String readString()
{
BufferedReader br
= new BufferedReader(new InputStreamReader(System.in), 1);
// Declare and initialize the string
String string = "";
// Get the string from the keyboard
try
{
string = br.readLine();
}
catch (IOException ex)
{
System.out.println(ex);
}
// Return the string obtained from the keyboard
return string;
}
// Read an int value from the keyboard
public static int readInt()
{
return Integer.parseInt(readString());
}
// Read a double value from the keyboard
public static double readDouble()
{
return Double.parseDouble(readString());
}
// Read a byte value from the keyboard
public static byte readByte()
{
return Byte.parseByte(readString());
}
// Read a short value from the keyboard
public static short readShort()
{
return Short.parseShort(readString());
}
// Read a long value from the keyboard
public static long readLong()
{
return Long.parseLong(readString());
}
// Read a float value from the keyboard
public static float readFloat()
{
return Float.parseFloat(readString());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -