+ 4
How to take input from buffer reader ?
4 Respostas
+ 19
Adding to @Serena's answer :
You have to throw/catch an IO Exception in most of the conditions ...
public static void main(String[] args) throws IOException { ...
IOException is a checked exception. You must either catch it, or throw it to your calling method.
+ 6
That was Quick @Serena Thx
And well explained.