已知程序如下:Private Sub p() Static s As Integer Dim i As Integer For i = 1 To 10 Step 2 s = s + i Next i Print s;End SubPrivate Sub Command1_Click() Call pEnd 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
一个窗体单击事件过程如下: Private Sub Form_Click() x = Int(Rnd) + 10 If x * x > 10 Then y = x + 1 If x * x = 8 Then y = x * x If x * x < 10 Then y = x * x + 5 Print yEnd Sub试问:当单击窗体后,输出为___________。