62,623
社区成员
发帖
与我相关
我的任务
分享
import java.io.*;
public class Test6
{
public static void main(String[] args) throws IOException
{
BufferedReader buf;
String str;
buf = new BufferedReader( new InputStreamReader( System.in ) );
str = buf.readLine();
System.out.println( "str为" + str );
}
}