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
Just use...
Scanner keyboard = new Scanner(System.in); char c = keyboard.next().charAt(0);
This gets the first character of the next input.