int[][] changeArray(int [][]a){ int [][]b; b=new int[a[0].length][a.length]; for(int i=0;i { for(int j=0;j { b[i][j]=a[j][i]; } } return b;}