Assume that an array of integers named salarySteps that contains exactly five elements has been declared. Write a statement that assigns the value 160000 to the last element of the array salarySteps.
.
.
Click on the title for the solution
.
.
salarySteps[4]=160000;
.
Click on the title for the solution
.
.
This is the answer:
:
salarySteps[4]=160000;
Comments
Post a Comment