单项选择题

有以下程序
main( )
int x=0,y=0,i;
for(i=1;++i)
if(i%2==0)x++;continue;
if(i%5==0)y++;break;
printf("%d,%d",x,y);
程序的输出结果是

A)2,1
B)2,2
C)2,5
D)5,2