<t>I need to write an algorithm that, given a finite set of increasing numbers, will generate the sums of all possible subsets.For example: Given 10, 13, 20, 40.I want an ouput array the will contain:10 + 1310 + 2010 + 4013 + 2013 + 4020 + 4010 + 13 + 2010 + 13 + 4010 + 20 + 40etc.....I will also wa...