单项选择题

有下列程序段:
Dim s,I,j as integer
For I=1 to 3
For j=3 To 1 Step -1
s=I*j
Next j
Next I
执行完该程序段后,循环执行次数是()。

A.3
B.4
C.9
D.10