Search:

Type: Posts; User: javapenguin

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,425

    Re: Placement of code within an application

    Also, if this happens to be due soon, it may or may not be fully answered in time.

    Also, I don't know what data types you are storing. int, float, double, long, short.

    If the board size never...
  2. Replies
    4
    Views
    1,425

    Re: Placement of code within an application

    Assuming you have all the values in an array or something, just use a for loop

    for (int x =0 ; x < array.length; x++)
    {
    array[x] = " ";

    }

    As for the not ending, try using a boolean and a...
Results 1 to 2 of 2