执行下列程序,单击Command1按钮后,窗体上显示的第一行是______,第二行是______,最后一行是______。
Option Explicit
Private Sub Command1_Click()
Dim I As Integer, n As Integer
For I=1 To 20 Step 2
n=fun(I, I)
Print n
Next
Print I
End Sub
Private Function fun(ByVal a As Integer, b As Integer)As Integer
a=a+b
b=b+a
fun=a+b
End Function