This is a very simple Java program. In this program we will learn how to use three dimensional array.
Three Dimensional Array program
This is a very simple Java program. In this program we will learn how to use three dimensional array. Firstly, we have to define class name "ThreeDMatrix" . We are going to create 3 by 4 by 5 program. We are going to make three dimensional array having multi rows and columns.
By using the multidimensional array we are going to make a matrix. Now in this program use the three for loop for multi dimensional array. After that use the display the values by using println() method .
Here is the code of this program
class ThreeDMatrix
|