Complete Chapter 8 Programming Activity 1 Working with Array
Complete Chapter 8, Programming Activity 1: Working with Arrays.
Make sure you study the Programming Activity 8-1 Guidance document.
Solution
Part 5 ------- Finding the index of the minimum value of an array: int indexMinValue = 0; for (int i = 1; i < aTestScores.length; i++) { if (aTestScores[i] < aTestScores[indexMinValue]) { indexMinValue = i; } }