• 2021-04-14
    设有下面程序:
    Function F( a As Integer)
    b = 0
    Static c
    b= b + 1
    c= c + 2
    F= a + b + c
    End Function
    Private Sub Command1_Click()
    Dim a As Integer
    a = 2
    For i = 1 to 3
    Print F(a);
    Next i
    End Sub
    运行上面的程序,单击命令按钮 Command1 ,输出结果为________