Solutionunvalidated
`char temp = (char)text.charAt(0) + 1` or `char temp = (char)text.charAt(0); temp++`. Tension: It doesn't work because it converts int to char. Outcome: You should implicitly cast into char.
7d311e81-169a-43ab-a7f9-8fa982dabed3
char temp = (char)text.charAt(0) + 1 or
char temp = (char)text.charAt(0); temp++. Tension: It doesn't work because it converts int to char. Outcome: You should implicitly cast into char.