The error is that it just won't compile. It will show my text underlined in red. I was asking one of my friends, and he informed me that there is no char scanner class, just Ints and Strings. Is this correct for a String scanner :
Scanner key = new Scanner(System.in);
String s = key.next();
and Int is
Scanner key = new Scanner(System.in);
int i = key.nextInt();
Thank you for helping me out!
