组卷题库 > 高中信息技术试卷库
试题详情
有如下VB程序段:

Function fun(x As Integer) As Integer

    If x <= 2 Then

        fun = x

    Else

        fun = 2 * fun(x - 1) + fun(x - 2)

    End If

End Function

则表达式fun(5)的值为(   )

A、12
B、29
C、30
D、70
知识点
参考答案
采纳过本试题的试卷
教育网站链接