Private Sub Form_click() test 2 End Sub
Private Sub test(x As Integer) x = x * 2 + 1 If x < 6 Then Call test(x) End Ifx = x * 2 + 1Form1.Print x
End Sub为什么能有2行结果,请指示!谢谢!