| Author |
BufferedReader problem
|
Nathan Doe
Greenhorn
Joined: Oct 17, 2009
Posts: 24
|
|
I am trying to prompt the user to enter two numbers and then have those numbers set to the two variables cNum and sNum.
The problem is that when I run this when i enter a value the output is a number in the 50's.
Any help is appreciated.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32651
|
|
You need to see what the read() method does, and work out why you get 51 when you expect 3. There are other methods in those classes, eg readLine() which are probably more suitable. There is no need to use two BufferedReaders in the same method to read from the same source. Make sure you use a finally block to close the Reader, otherwise you may end up with "resource leaks."
You may find it much easier if you use the Scanner class.
|
 |
Nathan Doe
Greenhorn
Joined: Oct 17, 2009
Posts: 24
|
|
|
Thanks!
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32651
|
|
I presume you have got it worked out then . . . well done
|
 |
 |
|
|
subject: BufferedReader problem
|
|
|