Search:

Type: Posts; User: Norm

Search: Search took 0.17 seconds.

  1. Replies
    3
    Views
    1,698

    Re: Return Value Cannot Be Found

    To help figure out what is happening, add some printlns to the code to print out the values of the variables that are used to control the loop as the loop executes. The print out should show you why...
  2. Replies
    3
    Views
    1,698

    Re: Return Value Cannot Be Found

    You have defined the String palindrome locally inside of a pair of {}s. Its definition is NOT known outside of the enclosing {}s. It is out of scope there.
    You need to define it at the same level of...
Results 1 to 2 of 2