is it possible to read values from Standard input
without using InputStreamRead er ?
This is probably one of those trick questions right?
I'd say java treats the standard input as an InputStream so you're stuck with it. However, you can wrap that input sream into more friendlier classes like BufferedReader and most importantly into the Scanner class.
Comment