填空题

有以下程序
#include <stdio.h>
fun(int x)
if(x/2>0) fun(x/2);
printf("%d .",x);

main()
fun(6),Printf("\n");
程序运行后的输出结果是______。

【参考答案】

1 3 6