6 lines
67 B
Text
6 lines
67 B
Text
|
|
n = argument0
|
||
|
|
j = 1
|
||
|
|
for(i = 1; i <= n; i += 1)
|
||
|
|
j *= i
|
||
|
|
return j
|