java二維陣列的裝置
public static void sort(int arr[][]){
for(int x=0;x<arr.length;x++){
for(int y=x;y<arr[x].length;y++){
if(x!=y){
int t=arr[x][y];
arr[x][y]=arr[y][x];
arr[y][x]=t;
}
}
}
}
public static void paint(int temp[][]){
for(int x=0;x<temp.length;x++){
for(int y=0;y<temp[x].length;y++){
System.out.print(temp[x][y]+",");
}
System.out.println();
}
}