logo CodeStepByStep logo

Cumulative

Language/Type: VB List collections

Write a function named Cumulative that accepts as a parameter a List of integers, and modifies it so that each element contains the cumulative sum of the elements up through that index. For example, if the list passed contains {1, 1, 2, 3, 5}, your function should modify it to store {1, 2, 4, 7, 12}.

Function: Write a VB function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.