单项选择题

下面程序的输出结果是( ) int i=10,j=0; do{ j=j+1;i--; }while(i>2); printf("%d",j);

A、50
B、52
C、51
D、8