填空题

以下程序运行后的输出结果是 【20】
#include <stdio.h>
fun(int x)
if(x/2>0) fun(x/2);
printf("%d",x);
main()
fun(6);

【参考答案】

1 3 6