单选题
窗体上有1个名称为Command1的命令按钮,事件过程及函数过程如下: Private Sub Command1_Click() Dim P As Integer P=m(1)+m(2)+m(3) Print P End Sub Private Function m(n As Integer)As Integer Static s As Integer For i=1 To n s=s+1 Next m=S End Function 运行程序,第2次单击命令按钮Command1时的输出结果为( )。