Answer:
The code to this question can be given as follows:
Code:
int matrixAdd(int[][] a, int[][] b) //defining method matrixAdd
{
int c[x][y]=0;//defining variable
for(int x = 0; x<a.length; x++) //loop for add rows
{
for(int y= 0; y<a[i].length; y++) //loop for add column
{
int c[x][y] = a[x][y] + b[x][y]; //add array elements
}
}
return c[x][y];//return value
}
Explanation:
In the above method definition code, a method "matrixAdd" is defined that contains two integer 2D arrays "a[][] and b[][]" in its parameter, and this function returns the sum of both array.