└── Matrix 2 dimensional /Matrix 2 dimensional: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | class Matrix { 3 | public static void main(String[] args) { 4 | int[][]matrix={ 5 | {1,2,3}, 6 | {4,5,6}, 7 | {7,8,9}, 8 | }; 9 | for(int i=0;i=0;j--) 22 | { 23 | System.out.print(matrix[i][j]+" "); 24 | } 25 | System.out.println(" "); 26 | } 27 | } 28 | } 29 | } 30 | --------------------------------------------------------------------------------