填空题

下面是计算n的阶乘的递归函数,请将该函数的定义补充完整。
unsigned f(unsigned n)
if(n<=1) return 1;
else return 【10】 ;

【参考答案】

n *f(n-1)