Matrix in Java

In this program you will learn about array and matrix. An array is the collection of same data type values. If we create a variable of integer type then, the array of int can only store the int values. It can't store other than int data type.

Matrix: A matrix is a collection of data in rows and columns format.

In this program we are going to implement a matrix. To make a program over the two dimensional array of all we have to declare class named as Matrix , For displaying the matrix we need to its rows and column . Now, we use the for loop to print all the values stored in the array. At last use the main() method inside which we are going to declare the values of the multidimensional array which we are going to use. The output will be displayed to the user by print() ,println() methods.

Matrix


When you run the program, the output will be:

1     2     3     4     
2     3     4     5     
5     6     7     8     
6     7     8     5     
3     7     9     3     

Previous Post Next Post