填空题

下面是用来计算n的阶乘的递归函数,请将该函数的定义补充完整(注:阶乘的定义是n!=n*(n-1)*…*2*1)。
unsigned fact(unsigned n)

if(n<=1)
return 1;
return______;

【参考答案】

n*fact(n-1)