#10972: JAVA 矩陣轉換 求高人指點 一值WA


stu401302006 (yu)

學校 : 國立虎尾科技大學
編號 : 57796
來源 : [140.130.36.49]
最後登入時間 :
2017-10-22 00:13:12
a015. 矩陣的翻轉 | From: [36.235.75.214] | 發表日期 : 2016-05-30 21:54

package codetraining;

import java.util.*;

public class Martix {

public static void main(String[] args) {

Scanner Keyboard = new Scanner(System.in);
int row = Keyboard.nextInt();
int column = Keyboard.nextInt();
int[][] a = new int[40][40];

int i,j;
while(Keyboard.hasNextInt()){
for( i=0; i<row ; i++ ){
for( j=0; j<column; j++){

a[i][j]=Keyboard.nextInt();
System.out.println("");
}

}

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

 
#11246: Re:JAVA 矩陣轉換 求高人指點 一值WA


ss0935565 (morning)

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

package codetraining;

import java.util.*;

public class Martix {

public static void main(String[] args) {

Scanner Keyboard = new Scanner(System.in);
int row = Keyboard.nextInt();
int column = Keyboard.nextInt();
int[][] a = new int[40][40];

int i,j;
while(Keyboard.hasNextInt()){
for( i=0; i for( j=0; j<column; j++){

a[i][j]=Keyboard.nextInt();
System.out.println("");
}

}

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


int[][] a = new int[40][40];

->  int[][] a = new int[row][column];

 
ZeroJudge Forum