#11247: #JAVA-解答供參考


ss0935565 (morning)

學校 : 朝陽科技大學
編號 : 58733
來源 : [163.17.21.136]
最後登入時間 :
2019-04-19 16:52:30
a015. 矩陣的翻轉 | From: [1.165.73.114] | 發表日期 : 2016-08-07 16:13


Scanner scanner = new Scanner(System.in);

while(scanner.hasNext()){

int a=scanner.nextInt(); //行
int b=scanner.nextInt(); //列
int[][] ary = new int[a][b];

for(int i=0;i<a;i++){
for(int j=0;j<b;j++){
ary[i][j]=scanner.nextInt();
}

}

for(int i=0;i<b;i++){
for(int j=0;j<a;j++){
System.out.print(ary[j][i] + " ");
}
System.out.println();
}

}

 
ZeroJudge Forum