Posts by Daniel Teruya • 11 points
1 post
-
1
votes2
answers9616
viewsA: Read input data to EOF in URI Online Judge
You can also do it this way BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); while(br.ready()){... so when you finish the file will exit in the while loop…
javaanswered Daniel Teruya 11