I have array of int[10000].
I need to sum each int with other one, and show result, for only those, where sum are > N.
Sum, can be any with any element of array, also sum of 5,6,7...10000 elements of array which > N.
I can write down(all combinations, but it`s insane) it like a[1] + a[2] + a[3]... But may be there are other resolution?
I need result all combinations, that gives me sum which is >N
Okey. If it is array of int[10]?