Question: 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

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. Code writing challenge activity demo 464748.3235884.032qy7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
