โ Back to Arrays
Question 315
Cumulative Sum
Cumulative Sum
The array{1, 2, 3, 4}is given. Print the running (cumulative) sum: each output value is the sum of all elements up to and including that position, separated by single spaces: 1 3 6 10 So1, then1+2=3, then3+3=6, then6+4=10. There is no trailing space.
Expected Output:
1 3 6 10
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.