I have this excerise to do where I need to create two arrays like this:
arrayA[2][3];
arrayB[2][3];
and a third array to store the result of 1[2][3] + 2[2][3]. I need to use a double loop and a double loop only to iterate over the elements in the arrays, compute the sum of each compenent and store it in the third array. Finally I have to output the third arrays sum.
The progam needs to look like this:
A =
-5 2 8
1 0 0
B =
1 0 2
0 3 -6
A + B =
-4 2 10
1 3 -6
However I can't get it to work with two arrays in a double for loop only, nothing more. Here's what I've done. I've only come so far and when I try to add another array in the "j loop" everything gets messed up. Is this possible to do with only a double loop without the use of functions and stuff like that (im only supposed to use loops and logical conditions in this chapter):
int matrixA[2][3] =
{
{-5, 2, 8},
{1, 0, 0}
};
int matrixB[2][3] =
{
{1, 0, 2},
{0, 3, -6}
};
int matrixC[2][3];
for (int i = 0; i < 2; ++i)
{
for (int j = 0; j < 3; ++j)
{
cout << matrixA[i][j] << " ";
}
cout << endl;
}
Like I said it works fine if I either only display one arrays data or use more loops however I only have to use a double for-loop and nothing else. On top of that I have no idea how to get another space between 1 0 0 and B = and how to add A =, B= and A + B = in this loop.
EDIT: @Niklas, thanks for the answer but I really don't understand how to 'prepare' an output. According to my assignment I need to use, and I'm quoting the text "a double for-loop to iterate over the matrix elements, compute the sum of each component and store the result in the third matrix. Finally output the matrix sum." Will add this to OP as well.