Array index required
You have written something like:
int[] foo = new int[10];
foo[]=5;
It should be something like
int[] foo = new int[10];
foo[3]=5;
NOTE: The Java section is mostly in maintenence mode. I don't have time to work on it right now. Errors will be corrected if pointed out, but they are not actively being searched for. Newer site features, like alternate stylesheets, may cause problems with these pages.