一次性AC,用时8分钟
#include<iostream>
using namespace std;
int ji=1;
int jc(int n)
{
if(n==0)
return ji;
ji=ji*n;
jc(n-1);
}
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
int n;
cin >> n;
int j=jc(n);
cout << j;
// fclose(stdin);
// fclose(stdout);
return 0;
}