I want to get the current value of an ArrayList. In other words, I want to loop through my list and get the current value of the instance the loop runs through + all the previous values. Here are my list:
ArrayList<Double> list = new ArrayList<>();
list.add(10.0);
list.add(10.0);
list.add(10.0);
list.add(10.0);
list.add(10.0);
I have looped through it like this:
ArrayList<Double> list1 = new ArrayList<>();
for (int i = 1; i < list.size(); i++) {
list1.add(list.get(i) + list.get(i - 1));
}
System.out.print(list1);
My problem is of course that I only get the current value + the previous value. But I want to get the current value + ALL the previous values so the ArrayList "list1" consist of [10, 20, 30, 40, 50] and NOT [20, 20, 20, 20, 20] which is now the case.
I'm still learning so I know that there is probably a simple/basic way of doing this, but I've unfortunately not been able to come up with a solution on my own.