Hi, I was wondering whether anyone could help me with this program?
Write a program that accepts two integer command-line arguments: x and k. THe program must construct an array of x random double values between -5..5. Then your program must repeat the following two steps k times:
1) Mutate the array
2)Display the array
To mutate the array, implement a routine
void mutate(double[] delta)
The method must accept a double array, pick a random element, and change it to a random double value -5..5.
You must print out all the arrays (it will be z x k number of arrays)