写出单击按钮Command1后程序的运行结果Function F(a As Integer)b=0static cb=b+1c=c+1F=a+B+CEnd FunctionPrivate Sub Command1_Click()Dim a As Integera = 2For i = 1 To 3Print F(a);Nex... 展开
写出单击按钮Command1后程序的运行结果Function F(a As Integer)b=0static cb=b+1c=c+1F=a+B+CEnd FunctionPrivate Sub Command1_Click()Dim a As Integera = 2For i = 1 To 3Print F(a);Next iEnd Sub 收起