单项选择题

执行以下程序后i的值为()。
main()
int x,i;
for(i=l,x=1;i<=36;i++)
if(x>=20) break;
if(x%5==1)
x+=5;continue;
x-=5;
)
printf("%d",i);

A、 3
B、 4
C、 5
D、 6