设有以下函数过程 Private Function Fun(a0 As Integer,b As String)As Integer End Function 若已有变量声明: Dim x(5)As Integer,n As

admin2018-10-15  26

问题 设有以下函数过程
    Private Function Fun(a0 As Integer,b As String)As Integer
    End Function
    若已有变量声明:
    Dim x(5)As Integer,n As Integer,ch As String
    则下面正确的过程调用语句是

选项 A、x(0)=Fun(x,”ch”)
B、n=Fun(n,ch)
C、Call Fun x,”ch”
D、n=Fun(x(5),ch)

答案A

解析 本题考查函数调用。Fun函数有两个参数,第一个参数是Integer类型数组,第二个参数是String字符串,返回值为Integer。选项A)正确,x(O)是Integer类型变量,参数x是Integer类型数组,参数“ch”是字符串;其余选项均错误。
转载请注明原文地址:https://kaotiyun.com/show/sUFp777K
0

最新回复(0)