it prints everythin in a single line.
i tried your code again, it wouldnt print a row. unfortunately. i copied and pasted yoru code. no luck...
how the hell do i print in a row.
damn, should i use a method like tostring? could it give me a chessboard format?
it wouldnt print one shape next to another. not even like that
String row1="";
String row2="";
for(int x=1;x<9;x++){
row1=array[2][x];
row2=array[3][x];
System.out.print(row1+" "+row2);
}
All i need to do is to print a table from this:
String[][] array=new String[9][9];
but how?