class Program01 { static int[][] a = { {5, 2, 3, 4}, {0, 1, 4, 5}, {3, 2, 0, 6}}; static int[][] b = new int[4][3]; public static void transzponal() { for(int i=0; i<3; i++) { for(int j=0; j<4; j++) { b[j][i] = a[i][j]; } } } public static void kiir(int sor, int oszlop, int[][] matrix) { for(int i=0; i