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

java开始到熟悉61

时间:2014-04-29 16:33:46      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   width   

                              本此主题:多维数组----矩阵运算

mamicode.com,码迷

矩阵的运算规则是将对应位置的值进行运算,如上图所示。

mamicode.com,码迷
 1 package array;
 2 
 3 public class Matrix {
 4     /**
 5      * 打印矩阵
 6      * @param c
 7      */
 8     public static void print(int[][] c)
 9     {
10         int i,j;
11         for(i=0;i<c.length;i++)
12         {
13             for(j=0;j<c.length;j++)
14             {
15                 System.out.print(c[i][j]+"\t");
16             }
17             System.out.println();
18         }
19     }
20     /**
21      * 矩阵加法运算
22      * @param a
23      * @param b
24      * @return
25      */
26     public static int[][] add(int[][] a,int[][] b)
27     {
28         int[][] c=new int[a.length][b.length];
29         int i,j;
30         for(i=0;i<a.length;i++)
31         {
32             for(j=0;j<a.length;j++)
33             {
34                 c[i][j]=a[i][j]+b[i][j];
35             }
36         }
37         return c;
38     }
39     public static void main(String[] args)
40     {
41         int[][] a={
42                     {1,3},
43                     {2,4}
44                   };
45         int[][] b={
46                     {3,4},
47                     {5,6}
48                  };
49         int[][] c=add(a,b);
50         print(c);
51     }
52 }
mamicode.com,码迷


运行结果:

4   7 
7   10 

java开始到熟悉61,码迷,mamicode.com

java开始到熟悉61

标签:style   blog   http   java   color   width   

原文地址:http://www.cnblogs.com/xiaojingang/p/3699563.html

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