填空题

数据结构包括数据的逻辑结构、数据的 【2】 以及对数据的操作运算。

【参考答案】

存储结构
<上一题 目录 下一题>
热门 试题

单项选择题
有过程如下:Sub fact (m As Integer, total As Long) Dim i As Integer total = 1 for i = 1 To m total = total*i Next iEnd Sub调用它的事件过程如下:Private Sub Command1_ Click () Dim tot As Long Dim a As Integer a = Val InputBox (“请输入数据”)) Call fact (a, tot) Print totEnd Sub则输入数据5,运行结果为 ______。
A.100
B.120
C.200
D.50
单项选择题
有如下的程序片段,该程序片段的执行完后,共执行循环______次。Private Sub command1_ Click() total =0 Counter = 1 do Print Counter total = total + Counter Print total, 111 Counter = Counter + 1 if total >= 10 then exit do End if Loop while Counter <= 10End Sub
有如下的程序片段,该程序片段的执行完后,共执行循环______次。Private Sub command1_ Click() total =0 Counter = 1 do Print Counter total = total + Counter Print total, "111" Counter = Counter + 1 if total >= 10 then exit do End if Loop while Counter <= 10End Sub
相关试题
  • 下图中,图1、图2是应用程序的部分界面。...
  • 在窗体上建立—个名称为Text1的文本框,用...
  • 下列程序实现的功能是:当在窗体上单击时,...
  • 数据库系统的三级模式分别为 【4】 模式...
  • 如下有一段不完整的程序段,如果要求该程序...