Question: solve Write a loop that sets each array element to the sum of itself and the next element, except for the last element which stays
solve
Write a loop that sets each array element to the sum of itself and the next element, except for the last element which stays the same. Be careful not to index beyond the last element. EX: Initial scores: 10, 20, 30, 40 Scores after the loop: 30, 50, 70, 40 The first element is 30 or 10 + 20, the second element is 50 or 20 + 30, and the third element is 70 or 30 + 40. The last element remains the same. Learn how our autograder works 6609 183108628.qx]zay7 import java. util. Scanner ; public class StudentScores { public static void main (String args) { Scanner scor = new Scanner (System. in) ; final int SCORES_SIZE = 4; int bonusScores = new int [SCORES_SIZE] ; int i; 8 for (i = 0; iStep by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
