6 lines
128 B
Text
6 lines
128 B
Text
|
|
F multifact(n, d)
|
|||
|
|
R product((n .< 1).step(-d))
|
|||
|
|
|
|||
|
|
L(d) 1..5
|
|||
|
|
print(‘Degree ’d‘: ’(1..10).map(n -> multifact(n, @d)))
|