单项选择题

下列程序的输出结果是______。
main()
int i,j;
for(j=10;j<11;i++)
for(i=9;i<j;i++)
if(!(j%i))break;
if(i>=j-1)printf(”%d”,i);

A.11
B.10
C.9
D.10 11