程序设计基础与结构化程序设计语句 双击窗体,将会出现窗体frmGYS的Load事件框架,在事件框架内编写它的事件过程代码,如下。 Private Sub frmGYS_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Height = 190 '设置窗体的高度,使标准答案不显示出来 Randomize() '随机数初始化 End Sub 说明: 代码中的Randomiz
数组 如假设存放200个学生信息学成绩的数组名为InformationScore,要求出所有学生的信息学的平均分,可使用下列语句: Dim AvgInformationScore As Single Dim InformationScore(199) As Integer AvgInformationScore = 0 For i = 0 To 199 Step 1 AvgInformationScore = AvgInformationScore + InformationScore (i)