What is the correct way to declare a multidimensional array and assign values to it?
This is what I have:
int x = 5; int y = 5; String[][] myStringA
You can look at this to start off:
int [][][] i = { //third dimension curly brace { // second dimension curly brace { //first dimension curly brace 1,1,1 //elements }, {3,3,3}, {2,2,2} }, { { 1,1,1 }, {3,3,3}, {2,2,2} } };