Board logo

標題: 105 陣列行列轉換 [打印本頁]

作者: b790113g    時間: 2011-12-24 20:50     標題: 105 陣列行列轉換

  1. public class test{
  2.         public static void main(String args[]){

  3.                 int m = 3 ;
  4.                 int n = 3 ;
  5.                
  6.                 int arA[][] ={{1,2,3},{4,5,6},{7,8,9}};//= new int[m][n];
  7.                 int arB[][] = new int[n][m];
  8.                
  9.                
  10.                 for(int i=0;i<m;i++){
  11.                         for(int j=0;j<n;j++){
  12.                        
  13.                                 arB[j][i] = arA[i][j] ;       
  14.                                
  15.                         }       
  16.                 }
  17.                
  18.                 for(int i=0;i<m;i++){
  19.                         for(int j=0;j<n;j++){
  20.                        
  21.                                 System.out.print(arB[i][j]+"\t");
  22.                                
  23.                         }       
  24.                         System.out.println();
  25.                 }

  26.         }
  27. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2