填空题

软件的 【2】 设计又称为总体结构设计,其主要任务是建立软件系统的总体结构。

【参考答案】

概要
<上一题 目录 下一题>
热门 试题

单项选择题
在窗体上画一个名称为Text1的文本框和一个名称为Command1的命令按钮,然后编写如下事件过程: Private Sub Commandl_Cliek() Dim arrayl(10, 10)As Integer Dim i,j As Integer For i=1 To 3 Forj=2 To 4 array1(i, j)=i+j Next j Next i Text1. Text=array1(2, 3)+array1(3, 4) End Sub 程序运行后,单击命令按钮,在文本框中显示的值是 ( )
A.12
B.13
C.14
D.15
单项选择题
单击命令按钮时,下列程序代码的执行结果为 ( ) Function FirProc(x As Integer, y As Integer, z As Integer) FirProc=2*x+y+3*z End Function Function SecProc(x As Integer, y As Integer, z As Integer) SecProc=FirProc(z, x, y)+x End Function Private Sub Commandl Click() Dim a As Integer, b As Integer, c As Integer a=2 :b=3 :c=4 Print SecProc(c, b,
A.
End SubA) 21
B.19
C.17
D.34
相关试题
  • 设某个程序中要用到一个二维数组,要求数组...
  • 阅读程序: Option Base 1 Dim arr2...
  • 阅读以下程序: Prlvate Sub Form_Clic...
  • 在属性窗口中,属性列表可以按两种顺序排列...
  • 一个类可以从直接或间接的祖先中继承所有属...