回復 2# 黃宇綸 - import java.io.BufferedReader;
- import java.io.InputStreamReader;
- public class Ch15 {
- BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
- String tmp;
- int m,n;
- int data[][], res[][];
- Ch15() throws Exception
- {
- while(br.ready())
- {
- tmp=br.readLine();
- m=Integer.parseInt(tmp.split(" ")[0]);
- n=Integer.parseInt(tmp.split(" ")[1]);
- data=new int[m][n];
- for(int i=0; i<m; i++)
- {
- tmp=br.readLine();
- for(int j=0; j<n; j++)
- data[i][j]=Integer.parseInt(tmp.split(" ")[j]);
- }
- res=new int[n][m];
- for(int i=0; i<n; i++)
- {
- for(int j=0; j<m; j++)
- res[i][j]=data[j][i];
- }
- for(int i=0; i<n; i++)
- {
- for(int j=0; j<m; j++)
- System.out.print(res[i][j]+" ");
- System.out.println();
- }
- }
- }
- public static void main(String[] args) throws Exception {
- new Ch15();
- }
- }
- /*
- 0 0 <-- 0 0
- 0 1 <-- 1 0
- 1 0 <-- 0 1
- 1 1 <-- 1 1
- 2 0 <-- 0 2
- 2 1 <-- 1 2
- */
複製代碼 |