guest
1
Q:

write a simple arraylist recursive code in java

MyMethod3
ArrayList<Integer> sum = new ArrayList<Integer>();
for (i = 0; i < MyArrayList.size(); i++){
    for (j = i + 1; j < MyArrayList.size(); j++){
        for (k = j + 1; k < MyArrayList.size(); k++){
            int total = MyArrayList.get(i) + MyArrayList.get(j) + MyArrayList.get(k);
            sum.add(total);
        }
    }
}
return sum;
0

New to Communities?

Join the community