Respuesta :

Answer:

a[j] = 2*a[j+1];

Explanation:

The statement above assigns a new value to the element of the array indexed by j. The new value should be equal to twice the value stored in the next element of the array.