单项选择题

下面for循环语句的执行结果是( )。
for(int j=10;j>3;j--)

if(j%3!=0)
j--;
--j;
--j;
System.out.println(j);

A.63
B.74
C.62
D.73