Why must life be this way? I don’t understand it. If we lived in a utopia, things might be better; but I’m not sure about that. I wish there was some kind of something to overcome this feeling of inadequacy. I doubt I will ever fully figure it out. If I had the ability, I would do it in a second. But I don’t seem to have that ability at the moment. Maybe one day I will be able to figure it all out.
There are times you wish to gather input from the console. There are a few ways of doing this. Here is one way of getting input from the user via the console:
public class Test {
public static void main(String[] args) {
String in;
in = System.console().readLine();
System.out.println(in);
}
}
Comments
Post a Comment