下列VB程序模块可以计算正整数n阶乘的值。 Function f(n As Integer) As Integer If n < =" 1" Then f = 1 Else f =" n" * f(n - 1) End If End Function 该模块采用的算法是( )
试题篮