执行以下递归函数,当传入n=6时,函数的返回值是( )
int func(int n) { if(n == 1) return 1; else return func(n - 1) * n; }
6
24
120
720