填空题

下列程序的输出结果是______。
#include<stdio.h>
void fun(int x)

if(x/2>0)fun(x/2);
printf("%d",x);

void main()

fun(3);printf("\n");

【参考答案】

M