I am trying to find a way to take a char input from the keyboard.
char
I tried using:
Scanner reader = new Scanner(System.in); char c = reade
Setup scanner:
reader.useDelimiter("");
After this reader.next() will return a single-character string.
reader.next()