Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Re: A Program that will ask five letters and create a possible words

    with recursion, in a loop, you take one item from the list and past the remaining items to the next level. Continue on down until only one left.
  2. Re: A Program that will ask five letters and create a possible words

    Do you know what a recursive method call is? That is a common way to solve this problem. That is what would be used when the input can be any number of letters.
    If your problem will always have 5...
  3. Re: A Program that will ask five letters and create a possible words

    What techniques has your instructor talked about? Did he give you any hints or clues on how to solve this?
  4. Re: A Program that will ask five letters and create a possible words

    Is this a "make all possible combinations" project?
    For example. given 1,2,3 : 123,132,213,231,312,321
Results 1 to 4 of 4