To readline, you call readLine.readLine To readint, you call readLine.readInt To readboolean, you call readLine.readBoolean To readdouble, you call readLine.readDouble To see how it works, you can ...
If it does, we could simulate Console.readLine() by wrapping System.in or some java.io.Reader which represents stdin into java.io.BufferedReader, which actually provides readLine(). That won't work, ...