C++ 一道编程题 求大神帮忙

2024-11-03 01:37:01
推荐回答(1个)
回答1:

int jc(int n)
{
    if(n==1)  return 1;
    else
    return n*jc(n-1);
}