Search:

Type: Posts; User: DavidFongs

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    1,827

    Re: Hangman Game

    You should really type the ArrayList with String and not Object, since you are populating it with strings

    ArrayList<String> list = new ArrayList<String>();
  2. Replies
    3
    Views
    1,827

    Re: Hangman Game

    Instead of counting the words, creating an array, and then reading the words again, why not use an ArrayList: ArrayList (Java Platform SE 6)

    This way, you can create an ArrayList (since you don't...
Results 1 to 2 of 2