[单项选择题] 单击命令按钮执行下列程序,其输出结果是( )。
Private Sub Command1_Click()
Dim a As Integer, b As Integer, c As Integer
a=3
b=4
c=5
Print SecProc(c, b,
A.
End Su
正确答案:C
参考解析:本题是在Connnand1过程中调用SecProc函数,而在 SecProc函数中又调用了FirProc函数。函数调用时,实参和形参要一一对应传递。程序运行过程如下:①Print SecProc(c,b,a)→ Print SecProc(5,4,3);②SecProc=FirProc(z,x,y)+x→SecPro= FirProc(3,5,4)+1;③FirProc=2*x+y+3*z→FirProc=2*3+5 +3*4=23:④SeeProc=28→Print SecProe(c,b,a)→Print 28。形参是在被调用的Sub、Function过程中定义的参数名;实参则是在调用的Sub或Function过程中定义的参数名。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)