填空题

下列程序的功能找出披5、7除,余数为1的最小的5个正整数。请在程序空白处填入适当的语句,使程序可以完成指定的功能。
Private Sub Form_Click()
Dim Ncount%,n%
Ncount=0
n=1
Do
n=n+1
If______Then
Debug.Print n
Ncount=Ncount+1
End If
Loop Uhdl Ncount=5
End Sub

【参考答案】

n Mod=5 1 And n Mod 7=1