sourabh kumar
Total Post:6
Points:42
how to taken input from console in java?
give the syntax in java
give the syntax in java
Total Post:6
Points:42© Copyright © 2010 - 2018 MindStick Software Pvt. Ltd. All Rights Reserved
Post:103
Points:721Re: Problem in taken input from console
in java we take an input from console using bufferreader class
for example:
BufferedReader reader = new BufferedReader(System.in);
String input = reader.readLine();