题解 | #n的阶乘#
n的阶乘
https://www.nowcoder.com/practice/97be22ee50b14cccad2787998ca628c8
#include <iostream>
using namespace std;
long long factorial(int n) {
if (n == 0) return 1;
return n * factorial(n - 1);
}
int main() {
int n;
while (cin >> n) { // 注意 while 处理多个 case
cout << factorial(n) << endl;
}
}
// 64 位输出请用 printf("%lld")


