Search:

Type: Posts; User: javapenguin

Search: Search took 0.08 seconds.

  1. Re: How to display each score in a competition?

    Not 100% sure if this is what you were getting at, but it seems that you have a bunch of names and it has 4 sets, 3 for the rounds and one for the total.

    Each name has 4 groups and there are...
  2. Re: How to display each score in a competition?

    You don't know what 2D array to use or you don't know what one is?

    A 2D array is an array of arrays.

    A 5 by 5 2D int array looks like this

    int[][] twoD = new int[5][5];

    And if you're...
Results 1 to 2 of 2