Hi,
I have some number ranges like (2,3) (4,5) (6,7)
now i want to write a recursion function on this number and out put required is the permutation combination of all these numbers. i can write for loop but the problem is these ranges can very.
the output i want is like thils .
2,4,6
2,4,7
2,5,6
2,5,7
3,4,6
3,4,7
3,5,6
3,5,7
Please help me in this.