62,623
社区成员
发帖
与我相关
我的任务
分享
public static String readString() {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String str="";
try {
str=in.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return str;
}