I tried to respond to this earlier, but it didn't seem to work.
Here are some code samples that hopefully will help out for declaring
and assigning values to the 3 dim array.

int intArray[][][] = new int[10][5][6];

intArray[i][j][k] = 1000 + (i * intArray[i].length * intArray[i]
[j].length) + ...

System.out.print( intArray[i][j][k] + " " );

Thanks,
Rich

-- 
To post to this group, send email to javaprogrammingwithpassion@googlegroups.com
To unsubscribe from this group, send email to 
javaprogrammingwithpassion+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en

Reply via email to