I'm trying to print two chars with
System.out.println(char1 + char2);
but it's adding the integer values together and printing the sum...
How do I print the chars themselves?
|
I'm trying to print two chars with
but it's adding the integer values together and printing the sum... How do I print the chars themselves? |
|||
|
|
|
You can't dereference a char, IE tostring, but you can let the java know how to interpret your intentions:
|
||||
|
|
|
Try:
If your variables are Try:
If they are java.lang.Characters |
|||
|
|