|
thanks for the tips guys i did through it into the compiler and i started working on fixing the syntax.....sry about all the errors i'm just learning this language. I did have another question though. I wrote:
int[][] seats = new int[5][7]; and i get errors
however:
int [] [] seats;
seats = new int[5][7];
compiles fine....why?
i thought that they are the same statement just written two different ways?
|