int factorial(int n) { if (n == 1) { return 1; } return n * factorial(n - 1); }
进行中
已结束
n
动画速度(ms)