码迷,mamicode.com
首页 > 其他好文 > 详细

矩阵相加

时间:2019-08-29 16:06:53      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:string   oid   class   yam   length   int   public   tostring   system   

#矩阵相加

package cn.yamon.array;

import java.util.Arrays;

/**
 * 矩阵的相加
 */
public class MutilpArrays {
    public static void main(String[] args) {
        /*二维矩阵
         *  1 2 3 4
         *  5 6 7 8
         *  9 10 11 12
         *  13 14 15 16
         * */
        int[][] as = {
                {1, 2, 3, 4},
                {5, 6, 7, 8},
                {9, 10, 11, 12},
                {13, 14, 15, 16}
        };
        int [][] bs={
                {2,2,2,2},
                {3,3,3,3},
                {4,4,4,4},
                {5,5,5,5}
        };
        //判断是否可以相加
        if(as.length!=bs.length){
            System.out.println("矩阵的行数不一样,无法相加");
        }else{
            for (int i = 0; i < as.length; i++) {
                for (int j = 0; j < as[i].length; j++) {
                    bs[i][j]=as[i][j]+bs[i][j];
                }
            }
            //System.out.println(Arrays.deepToString(bs));
            for (int[] arr :
                    bs) {
                for (int n :
                        arr) {
                    System.out.print(n+",");
                }
                System.out.println();
            }
        }


    }
}

矩阵相加

标签:string   oid   class   yam   length   int   public   tostring   system   

原文地址:https://www.cnblogs.com/chenyameng/p/11429662.html

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