各位好~小弟新手照着练习题,但是还是写不出来
想写一个0~20的随机乱数在两个3 x 3的二维阵列,目前为止都可以
但是需要第三个阵列把a[0][0]+b[0][0].......a[0][1]+b[0][1].....的值加起来
变成第三个3 x 3二维阵列,要如何写呢,谢谢。
public class ThreeMetrix {
public static void main(String[] args) {
int[][] a=new int[3][3];
int[][] b=new int[3][3];
for(int x=0;x<3;x+=1){
for(int y=0;y<3;y+=1){
a[x][y]=(int)(Math.random()*21);
System.out.print(a[x][y]+"\t");
}
System.out.println();
}
System.out.println("===================");
for(int w=0;w<3;w+=1){
for(int z=0;z<3;z+=1){
b[w][z]=(int)(Math.random()*21);
System.out.print(b[w][z]+"\t");
}
System.out.println();
}
System.out.println("===================");
}
}