填空题

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

【参考答案】

211