JAVA学习笔记-矩阵相加
Posted iamAnonymous
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA学习笔记-矩阵相加相关的知识,希望对你有一定的参考价值。
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学习笔记-矩阵相加的主要内容,如果未能解决你的问题,请参考以下文章