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

JAVA学习笔记-矩阵相加

时间:2016-11-12 20:08:56      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:return   java学习   ring   package   pac   out   ati   ++   输出   

package MyDuoWeiShuZu;

public class Mycode {

public static void show(int[][] c){
  for(int j=0;j<c.length;j++){
    for(int i=0;i<c.length;i++){
      System.out.print(c[j][i]+"\t");
    }
    System.out.println();
  }
}

public static int[][] add(int[][] a,int[][] b){
  int[][] c = new int[a.length][a.length];
  for(int i=0;i<a.length;i++){
    for(int j=0;j<a.length;j++){
      c[i][j]=a[i][j]+b[i][j];
    }
  }
  return c;
}

public static void main(String[] args){


  int[][] a = {
        {1,2},
        {3,4}
        };
  int[][] b = {
        {1,2},
        {3,4}
        };
  show(add(a,b));
}
}

 

输出结果:

2   4
6   8

JAVA学习笔记-矩阵相加

标签:return   java学习   ring   package   pac   out   ati   ++   输出   

原文地址:http://www.cnblogs.com/iamAnonymous/p/6057218.html

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