递归四部曲 求n! 1.递归函数定义 int jc(n) 2.基础情况处理 if(n==0){ return 1; } 3.递归调用 tem = jc(n-1) 4.递归到当前层 return tmp*n