单项选择题

设j为int型变量,则下面for循环语句的执行结果是()
for(j=10;j>3;j--)
{
if(j%3)j--;
j-=2;
printf("%d",j);
}

A.6 3
B.7 4
C.6 2
D.7 3