试题详情

以下程序运行后的输出结果是( ) 。 #include void fun(int x) {if(x/5>0) fun(x/5); printf(“%d”,x); } main() {fun(11); printf(“\n”);}

A211

B212

C213

D214