'guess' is a primitive of type char. You can't call methods on a primitive type - they are not objects.

You need to either convert the char to a String or convert the String to a char (which you...