http://www.edumax.com/java-basics-basic-java-objects-arrays.html
int[][] twoDimArray; twoDimArray = {{1,2,3},{1,2,3,4,5},{1,2,3,4},{1},{1,2});
Last closing character is a parenthesis. It ought to be a curly brace.
So there. :)
http://www.edumax.com/java-basics-basic-java-objects-arrays.html
int[][] twoDimArray;
twoDimArray = {{1,2,3},{1,2,3,4,5},{1,2,3,4},{1},{1,2});
Last closing character is a parenthesis. It ought to be a curly brace.
So there. :)
add new comment