When I run this code, I receive an arrayIndexOutOfBoundsException. BlueJ says I'm trying to access array element 6, but how? The counter only goes up to 4.
char[][] cards = new char[6][6];
void createDeck()
{
for(int iii = 0; iii < 4; iii++)
{
for(int jjj = 0; iii < 4; jjj++)
{
cards[iii][jjj] = ' ';
}
}
}

jandkinstead? i and j are too similar... If you want to avoid these kind of mistakes you can always go with more verbose indexes. EG: outerIndex and innerIndex. – Gevorg Oct 8 '11 at 0:02