码迷,mamicode.com
首页 > 编程语言 > 详细

编写一段代码,打印一个M行N列的二维数组转置。(交换行和列)

时间:2020-02-06 14:32:46      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:port   com   nbsp   一个   mamicode   一段   ring   ima   src   

import edu.princeton.cs.algs4.*;

public class No_1_1_13 {
    public static void main(String[] args)
    {
        int m=4;
        int n=3;
        int [][] a = new int[m][n];
        
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
            {
                a[i][j]=i+j;
                StdOut.print(a[i][j]);
            }
            StdOut.println();
        }
        
        int [][]b = new int [n][m];
                
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<m;j++)
            {
                b[i][j]=a[j][i];
                StdOut.print(b[i][j]);
            }
            StdOut.println();
        }
    }
}

以下是打印结果(在eclipse中运行)

技术图片

 

编写一段代码,打印一个M行N列的二维数组转置。(交换行和列)

标签:port   com   nbsp   一个   mamicode   一段   ring   ima   src   

原文地址:https://www.cnblogs.com/qinmin/p/12268371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!