填空题

以下程序的输出结果是______。
#include<stdio.h>
void fun(int x)
if(x/2>0) fun(x/2);
printf("%d",x);
main( )
fun(3);printf("\n");

【参考答案】

1 3
相关试题