填空题

以下程序运行后的输出结果是 【11】
Private Sub Form _ Click()
i=10 :j=0
Do
j=j+1
i=i-1
Loop while i>2
Print j;
End Sub

【参考答案】

52