- 186 名前:デフォルトの名無しさん mailto:sage [2010/03/14(日) 23:57:23 ]
- >>184
private static void read(BufferedReader br, int count) throws IOException{ if(count > 5) return; String str = br.readLine(); int i = Integer.parseInt(str); read(br, ++count); System.out.println(i); } こんなの作ってread(br, 1)しとけ
|

|