填空题

下列程序运行后,输出结果为______。
Sub abcd(ByVal n As Integer)
n=n+5
End Sub
Private Sub Form_Click()
n%=3
Call abcd(n%)
Print n%
End Sub

【参考答案】

C