填空题
有64个结点的完全二叉树的深度为
【2】
(根的层次为1)。
【参考答案】
G
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
有如下函数过程: Function gys(ByVal x As Integer,ByVal y As Integer) As Integer Do While y<>0 reminder = x Mod y x=y y=reminder Loop gys=x End Function以下是调用该函数的事件过程,该程序的运行结果是______。 Private Sub Command7_Click() Dim s As Integer Dim b As Integer a=100 b=25 x=gys(a,b) Print x End Sub
A.0
B.25
C.50
D.100
点击查看答案
单项选择题
单击命令按钮时,下列程序代码的执行结果为______。 Private Function FirProc (x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Function Private Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Function Private Sub Command1_Click() Dim a As Integer Dim b As Integer Dim C As Integer a=2 b = 3 c = 4 Print SecProc(c,b,a) End Sub
A.21
B.19
C.17
D.34
点击查看答案
相关试题
以下程序代码实现单击命令按钮Command1时...
在C盘当前文件夹下建立一个名为StuData.tx...
有如下Sub过程:Sub ind(a As Integer...
设有一个10个元素的数组,下列程序将该数...
窗体的属性可在属性窗口中设置,也可在程序...