Assume that an array named salarySteps whose elements are of type int and that has exactly five elements has already been declared.Write a single statement to assign the value 30000 to the first element of this array

Respuesta :

Answer:

See the explanation section

Explanation:

int[] salarySteps = new int[5];

salarySteps[0] = 30000;

Otras preguntas