Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
390 views

Single character console input in java/clojure

How can I read a single character/key from the console without having to hit Enter? There is an old entry in Sun's bug database claiming that it can't be done in pure java. I've found these ...
1
vote
4answers
174 views

Is there an equivelant for Pascal's readkey; in C or C++?

I am looking for a Console function that waits for the user to press a key. I want it to be like Pascal's readkey; as in a Console Only solution. No GUI library / Graphics Library / Windowing Library ...
1
vote
2answers
556 views

C# Console.ReadKey read numbers greater than 9

Im working with ConsoleKeyInfo in C# but i have problems with Console.ReadKey when I try to write numbers greater than 9 in the console, for example ConsoleKeyInfo number; Console.Write("Write a ...
1
vote
3answers
870 views

Reading Unicode with Console.ReadKey

Is it possible to provide Unicode input to a console app, and read the Unicode char/string via Console.ReadKey()? I know Unicode works when reading the input via other methods, but unfortunately I ...
0
votes
2answers
2k views

Readkey in Java

I am new to Java ... is there a similar method to the ReadKey() in C# to avoid that a console application closes? thanks