单项选择题

下列程序的输出结果为( )。
Private Sub Command1_Click()
Dim a(20)
For j=1 To 20 Step2
  a(j)=j
Next i
Print a(1)+a(2)+a(3)
End Sub

A.4
B.5
C.6
D.7