標題:
105 陣列行列轉換
[打印本頁]
作者:
b790113g
時間:
2011-12-24 20:50
標題:
105 陣列行列轉換
public class test{
public static void main(String args[]){
int m = 3 ;
int n = 3 ;
int arA[][] ={{1,2,3},{4,5,6},{7,8,9}};//= new int[m][n];
int arB[][] = new int[n][m];
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
arB[j][i] = arA[i][j] ;
}
}
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
System.out.print(arB[i][j]+"\t");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2