如下程序,运行的结果是( ),函数过程的功能是( )。 Public Function f(ByVal n/%,ByVal r/%) If n<>0 Then F=f (n/r,r) Print n Mod r; End If End Function Private Sub Command1_Click() Print f(100,8) End Sub