?? readdoubletest.java
字號:
/**
* @version 1.00 11 Mar 1997
* @author Cay Horstmann
*/
import java.io.*;
import java.text.*;
public class ReadDoubleTest
// shows how to read a double the hard way
{ public static void main(String[] args)
{ System.out.println
("Enter a number, I'll add two to it.");
double x; // the number we wish to read
try
{ InputStreamReader isr
= new InputStreamReader(System.in);
BufferedReader br
= new BufferedReader(isr);
String s = br.readLine();
DecimalFormat df = new DecimalFormat();
Number n = df.parse(s);
x = n.doubleValue();
}
catch(IOException e)
{ x = 0;
}
catch(ParseException e)
{ x = 0;
}
System.out.println(x + 2);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -