Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Replies
    8
    Views
    1,844

    Re: Need help with project that uses arrays

    For example:
    you define count in two places: one outside the while loop and the other inside the loop. You should only define count in ONE place and then use it where you need it.
    The same for the...
  2. Replies
    8
    Views
    1,844

    Re: Need help with project that uses arrays

    The tutorial given above shows how to store values into an array. Your code has the loop, but uses an int variable to save the input value. Change that to use an indexed element of the array. Use...
Results 1 to 2 of 2