实现阶乘函数 一条语句

亲测有效:

int factorial(int n) {
    return n==1?1:n * factorial(n-1);
}

你可能感兴趣的:(c++,c)