当前位置: 高中信息技术 / 单选题
  • 1. (2021高二下·浙江期中) 有如下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

微信扫码预览、分享更方便