单项选择题

有下列二叉树,对此二叉树前序遍历的结果为( )。

A.ACFHIBEDG
B.ABCDEFGHI
C.ABDEGCFHI
D.ABCDEFHGI
<上一题 目录 下一题>
热门 试题

单项选择题
下述程序执行后,输出结果是( )。 For n=3 To 1 Stew -1 x$=String$(n, # ) Print x$ Next n
A.1# 2# 3#
B.### ## #
C.# ## ###
D.3# 2# 1#
单项选择题
设在工程中定义了如下类型: Type stutype ino As Integer stmame As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。
A.Sub Command1_click() Dimstudent As Stutype With student .ino=12 .strname=smith .strsex=男 .smark=89 End With End Sub
B.Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub
C.Sub Command1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub
D.Sub Command1_click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End student End Sub
相关试题
  • 在一个窗体上添加一命令按钮控件,名为Comm...
  • 单击命令按钮执行下列程序,其输出结果是(...
  • 有如下事件过程: Private Sub Command...
  • 在窗体上画两个文本框Text1和Text2,一个...
  • 在窗体上画一个名称为“Command1”、标题...