I have a Java exercise here to solve but I can not understand exactly what I need to do, if anyone can give me an explanation, thank you! I need to do the following:
Given the A = [1,2,3,4,5]
and B = [1,2,3,4,5]
vectors, create algorithms to generate an array C of the multiplication of the elements of A by the elements of B. Notice that
C[1,1] <- A[1,1] * B[1,1]
C[1,2] <- A[1,1] * B[1,2]
C[1,3] <- A[1,1] * B[1,3]
...