-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- import java.util.Scanner;
-
- public class Console
- {
-
- public static String readLine(){
- Scanner sc=new Scanner(System.in);
- return sc.next();
- }
- public static char readLine_char(){
- Scanner sc=new Scanner(System.in);
- String str=sc.next();
- return str.charAt(0);
- }
- public static int readInt(){
- Scanner sc=new Scanner(System.in);
- String str=sc.next();
- return Integer.parseInt(str);
- }
-
- public static double readDouble(){
- Scanner sc=new Scanner(System.in);
- String str=sc.next();
- return Double.parseDouble(str);
- }
- }
posted @
2012-09-20 08:03
软件吧
阅读(
221)
评论()
收藏
举报