Here is some sample code for declaring and using the three dimensional
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] + " " );

Hope this helps.

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