选择题 19.  设有如下程序:
    Private Sub Command1_Click()
    Dim in As Integer, n As Integer
    m=1
    For n=1 To 5
    m=m*n
    If m>15 Then
    Exit For
    Else
    n=n+1
    End If
    Next n
    Print m;n
    End Sub
    程序运行后,单击命令按钮Command1,输出结果为______
【正确答案】 C
【答案解析】