My question is how can I print my two-dimensional arrangement in this way
My fix is 8*8
and I use this to print:
for (int x=0; x < matriz.length; x++)
{
for (int y=0; y < matriz[x].length; y++)
{
System.out.print(" | ");System.out.print (matriz[x][y]); System.out.print(" | ");
}
System.out.println();
}