I\'m trying to input information in Java console application but I can\'t seem to run it.
This is how my Java file looks like:
public class Ovn
try this
try{ BufferedReader buf=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter your Number :"); String number=buf.readLine(); System.out.println("your Number is :"+number); }catch(IOException ex){}