Hi, I would like to read data from the console in Java. I know that I need to use BufferedInputstream and/or DataInputStream but I need an example.
Something like:
Int value;
System.out.println("Please enter the percentage!");
then the the user enters/types: 60%
and then value = 60%.
Thanks.