How to input char using buffered reader in java
Answers
Answered by
0
Answer:
Reading Input Characters
To read a character from a BufferedReader we will use int read() throws IOException . Each time that read() is called, it reads a character from the input stream and returns it as an integer value. It returns -1 when the end of the stream is encountered
Explanation:
If my answer is correct please mark me as brainliest and give me a like
Similar questions