单项选择题

假定有以下程序段
n=0
for i=1 to 4
for j=3 to-1 step-1
n=n+1
next j
next i
运行完毕后n的值是( )。

A.12
B.15
C.16
D.20