For (i = 0; i < an - 1; i++) {
For (j = 0; j <= m - 1; j++) {
RV[i][j] = (RN1[i][j] * pow(RN2[i][j], 3)) / (sqrt(RN1[i][j]) * RN2[i][i]);
}
}
Note that your printout for RV[][] should only include the vector elements that have an even-numbered row and a column that is evenly divisible by 3 (i.e. you should print out RV[2][3]; but not print out RV[3][2] or RV[6][7]). After writing your code, test it with Min = 0, Max = 11000, M = 60, and N = 60. Note that double for loops will be required to create the 2-dimensional random number vectors and also to print out the values. Also note that the RV[][] vector cannot be an integer type because it contains square roots and cubed values.
10008.2115.0081.0