单项选择题

下面的程序段运行后,消息框显示的结果是______。 For i = 1 To 4 n = 1 For j = 1 To i n = n * j Next j Next i MsgBox(n)

A、4
B、5
C、24
D、288