fork(5) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int a[][]={{1,4},{2,5},{3,6}};
  13. int m=3,n=2;
  14.  
  15. int b[][]=new int[n][m];
  16.  
  17. for(int i=m-1; i>=0; i--)
  18. for(int j=0; j<n; j++) {
  19.  
  20. b[j][m-i-1]=a[i][j];
  21. }
  22.  
  23. for(int i=0; i<n; i++) {
  24. for(int j=0; j<m; j++)
  25. System.out.print(b[i][j]+"\t");
  26. System.out.println();
  27. }
  28. }
  29. }
Success #stdin #stdout 0.1s 320320KB
stdin
Standard input is empty
stdout
3	2	1	
6	5	4