标签:
1 package com.ezreal; 2 3 import java.util.*; 4 5 public class Main { 6 7 /** 8 * @param args 9 */ 10 public static void main(String[] args) { 11 // TODO Auto-generated method stub 12 new Main().run(); 13 } 14 public void run(){ 15 Scanner in = new Scanner(System.in); 16 int m=in.nextInt();//2 17 int n=in.nextInt();//3 18 int [][]a = new int[n][m]; 19 for(int i=0;i<m;i++ ){ 20 for(int j=n-1;j>=0;j--){ 21 a[j][i]=in.nextInt(); 22 } 23 } 24 for(int i=0;i<n;i++){ 25 for(int j=0;j<m;j++){ 26 System.out.print(a[i][j]+" "); 27 } 28 System.out.println(); 29 } 30 } 31 32 }
本题的主要是两种方法,一种是存储时传为输出的格式,另一种是输出时按题中格式输出。本题的做法是以第一种情况。
标签:
原文地址:http://www.cnblogs.com/ezreal2016/p/5781821.html