我需要在java程序中將10000個字符的字符串作爲用戶的輸入。但是,當我使用正常的方式,它會在ideone和spoj中產生NZEC錯誤。我怎樣才能把這樣一個字符串作爲輸入?如何在java中輸入10000字符的字符串輸入
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();
}
}
你準備怎麼做? – arshajii
你是什麼意思「它給NZEC錯誤」? –
檢查這個問題http://stackoverflow.com/questions/5436207/runtime-error-nzec-in-simple-code – fujy