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

admin2017-06-21  25

问题 设有以下函数过程
Private Function Fun(a() As Integer,b As String)As Integer

若已有变量声明:   
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(0)是Integer类型变量,参数x是Integer类型数组,参数“ch”是字符串;其余选项均错误。
转载请注明原文地址:https://jikaoti.com/ti/PIy0FFFM
0

随机试题
最新回复(0)