填空题
有下列程序: #include<stdio.h> fun(int x) { if(x/2>0) fun(x/2) : printf("%d",x); } main() { fun(6) ;printf("\n");} 程序运行后的输出结果是______。