Consider the following method and its Javadoc-formatted header:
/**
* Copies the values of array A into array B in the same order.
* The old values in B are lost.
* The array B must have the same length as array A.
*
* @param A the integer array to be copied
* @param B the integer array into which the values will be copied
*/
public void copyArray( int[] A, int[] B) { ... }
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.