3.) Write a C/C+ program that creates a pair of 2 dimensional n by m vectors of random
numbers (e.g. RN1[][] and RN2[][]) between Min and Max values input by user,
where n is the number of rows and m is the number of columns, and then prints out
the following vector RV[][]; where RV[][] is given by:
For (i=0;i<=n-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][j]));
Note that your print out 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 is containing square roots and cubed values.