By the time this code ends, you will have a 6-element array holding 9, 12, 15, 9, 6, 3. Wherever you see a bold uppercase letter (such as A), there is a missing line or partial line of code. The comments will help you know what to fill in. In your answer, please write the letter of what you are replacing above the code that will replace that letter.
For example, this line is supposed to declare and instantiate an integer named x to hold 100:
int x = J
The correct way to write this answer would be:
J: 100;
Here is the code that has the missing parts:
public static void main (String [] args)
// Declare & instantiate array holding 6 integers named list A=B
// call setArrayValues () with list array as argument c
// fill array with: 9-12-15-9-6-3 public static void setArrayValues (int [] numbers)
int x = 9;
for(int i = 0; i < 3; i++) // place x into current position D
// update x E
// reset x x = 9;
// use the array's length constant to limit loop condition for(int i = 3; i < F; i++) {
// place x into current position G
// update x H
}