Hi I'm trying to solve this problem:
"For any number code the next series:"
n = any number (1 for this case)
1,2,6,24,120,720...
This series is:
1x1 = 1
1x2 = 2
2x3 = 6
6x4 = 24
24x5 = 120
And so on....
I don't know how keep the first value (maybe a cont=0) and how use the for loop or the while loop.
Any idea?