下面程序
Main()

下面程序
Main()
{ int y=9;
For(;y>0;y--){
If(y%3==0)
{ printf("%d",--y);
Continue;
}
}
}
的输出是______。

A.741

B.852

C.963

D.875421

正确答案是B