我需要在java中的程序中将10000个字符串作为用户的输入。但是当我使用正常方式时,它会在 ideone 和 spoj 中出现 NZEC 错误。我怎样才能将这样的字符串作为输入?
import java.io.*;
class st
{
public static void main(String args[])throws IOException
{
String a;
BufferedReader g=new BufferedReader(new InputStreamReader(System.in));
a=g.readLine();
}
}