填空题

以下由C语言编写的程序,运行后输出结果是______。
#include<stdio.h>
void fun(int x)
if(x/2>1)fun(x/2);
Printf("%d",x);

Main()
(fun(7);printf("\n");

【参考答案】

3 7