a=1: b=1: n=12
f(1)=a: f(2)=b
For i=3 To n
c=a+b
f(i)=c Mod 4
a=b
b=c
Next i
执行该 段程序后,数组元素f(12)的值为( )