单项选择题

设有程序
main()
{ int i,j;
for(i=0,j=1;i<=j+1;i+=2,j--)
printf("%d\n",i);
}
在运行上述程序时,for语句中循环体的执行次数是______

A.3
B.2
C.1
D.0