Search:

Type: Posts; User: Norm

Search: Search took 0.09 seconds.

  1. Replies
    11
    Views
    1,877

    Re: Hangman game HELP!

    See this site: Java Forums - BB Code List
  2. Replies
    11
    Views
    1,877

    Re: Hangman game HELP!

    Where did you print the values?
    For example what prints out here for the values of line, wordArr, count, word and hint?


    wordArr[count] = new WrdObj(word,hint);


    Add a println() statement...
  3. Replies
    11
    Views
    1,877

    Re: Hangman game HELP!

    To see what is in the array use the Arrays.toString() method to display the contents of the array.
    Usage: System.out.println("URarray=" + Arrays.toString(URarray)); // show URarray's contents
    ...
  4. Replies
    11
    Views
    1,877

    Re: Hangman game HELP!

    What variable at line 41 of the WrdArray class is null? When you find the variable backtrack in your code to see why that variable is null and change the code so it is not null.

    If you are not...
  5. Replies
    11
    Views
    1,877

    Re: Hangman game HELP!

    does it compile without errors?
    If not, please copy and paste the full text of the error messages.

    If it compiles, what does it do that is "wrong"? Can you show what it does do and explain what...
Results 1 to 5 of 5