Function Func(aAs Integer,bAs Integer)As Integer Static mAs Integer,iAs Integer m=0 i=2 i=i+m+1 m=i+a+b Func=m End Function 在窗体上画一个命令按钮,然后编写如下事件过程: Private SubCommand 1_Click() Dim kAs Integer,mAs Integer Dim pAs Integer k=4 m=1 p=Func(k,m) Print p; p=Func(k,m) Print p End Sub 程序运行后,单击命令按钮,输出结果为()。 A.8 17 B.8 16 C.8 20 D.8 8