Private Sub Form_Click() 窗体上单击后,显示结果为:a=85Select case aCase Is> =60 I=“及格”Case Is> =70 I=“中“Case Is> =80 I=“良”Case else I=“优”End SelectPrint IEnd Sub
单击窗体时,下列程序代码的执行结果为___________。Private Sub Form_Click() x = Int(Rnd) + 5 If x * x > 8 Then y = x * x + 1 If x * x = 9 Then y = x * x * x If x * x < 8 Then y = x * x - 3 Print yEnd Sub
下列程序段的执行结果为___________。Private Sub Form_Click()Dim x(3,5) For i=1 to 3 For j=1 to 5x(i,j)=x(i-1,j-1)+i+jnext j,iPrint x(3,4)End Sub