โ Back to Arrays
Question 393
Build a Prefix Sum Array
Build a Prefix Sum Array
The array{2, 4, 6, 8}is given. Build a new array where each position holds the running total of all elements up to and including that index, then print it on one line separated by single spaces: 2 6 12 20 Position0is2, position1is2+4=6, position2is2+4+6=12, and position3is2+4+6+8=20.
Expected Output:
2 6 12 20
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.