#4936: JAVA RE


Kaitang (凱)

學校 : 國立屏東大學
編號 : 5159
來源 : [163.24.254.195]
最後登入時間 :
2013-10-22 15:10:17
a015. 矩陣的翻轉 | From: [111.83.163.233] | 發表日期 : 2011-03-05 10:47

//a015: 矩陣的翻轉
import java.util.Scanner;

public class a015 {
 public static void main(String[] args) {
  Scanner sin = new Scanner(System.in);
  int a,b;
  a = sin.nextInt();
  b = sin.nextInt();
  int number[][] = new int[a][b];
  for(int row =0;row<a;row++){
   for(int commun=0;commun<b;commun++){
    number[row][commun] = sin.nextInt();
   }
  }
  for(int commun=0;commun<b;commun++){
   for(int row=0;row<a;row++){
    System.out.print(number[row][commun]+ " ");
   }
   System.out.println();
  }
 }
}

RE了...不知道哪邊有寫錯的地方

 
#8155: Re:JAVA RE


tripleH (tripleH)

學校 : 不指定學校
編號 : 34180
來源 : [1.173.207.100]
最後登入時間 :
2013-10-11 20:02:59
a015. 矩陣的翻轉 | From: [1.173.194.8] | 發表日期 : 2013-09-05 21:40

//a015: 矩陣的翻轉
import java.util.Scanner;

public class a015 {
 public static void main(String[] args) {
  Scanner sin = new Scanner(System.in);
  int a,b;
  a = sin.nextInt();
  b = sin.nextInt();
  int number[][] = new int[a][b];
  for(int row =0;row   for(int commun=0;commun    number[row][commun] = sin.nextInt();
   }
  }
  for(int commun=0;commun   for(int row=0;row    System.out.print(number[row][commun]+ " ");
   }
   System.out.println();
  }
 }
}

RE了...不知道哪邊有寫錯的地方

補個迴圈試試

 public class a015 {

 public static void main(String[] args) {

  Scanner sin = new Scanner(System.in);

  while(sin.hasNext()){

  int a,b;

  a = sin.nextInt();

  b = sin.nextInt();

  int number[][] = new int[a][b];

  for(int row =0;row<a;row++){

   for(int commun=0;commun<b;commun++){

    number[row][commun] = sin.nextInt();

   }

  }

  for(int commun=0;commun<b;commun++){

   for(int row=0;row<a;row++){

    System.out.print(number[row][commun]+ " ");

   }

   System.out.println();

  }

  }

 }

}

 
ZeroJudge Forum