填空题

在窗体上画’一个命令按钮,然后编写如下程序
Dim x As Integer
Sub inc (a As Integer)
x=x +a
End Sub
Private Sub Command l_click()
inc 2
inc 3
inc4
Ms g box x;
End Sub
程序执行后,单击Command I命令按钮,消息框显示结果是 【14】

【参考答案】

I