You need to implement the createCube method. It should create a 3x3x3 three-dimensional array with the following content:
[0, 1, 2] | [3, 4, 5] | [6, 7, 8] |
[0, 1, 2] | [3, 4, 5] | [6, 7, 8] |
[0, 1, 2] | [3, 4, 5] | [6, 7, 8] |
The elements should be of type int.
You need to create a three-dimensional array with dimensions 3x3x3. This means you'll need three nested loops to iterate over each dimension of the array. Use the three nested loops to fill in the elements of the array. For each element, assign a value based on its position within the array.