#include<stdio.h>请大家指教一下!!!
有个问题是这样的,请问它的结果是什么?为什么????#include<stdio.h>
void fun(int x)
{ if(x/2>0)
fun(x/2);
printf("%d",x);
}
main()
{ fun(3);
printf("\n");
}
[ 本帖最后由 c门 于 2011-9-16 16:54 编辑 ]
2011-09-16 16:40

2011-09-16 16:50
2011-09-16 16:54
2011-09-16 16:57
2011-09-16 16:58
2011-09-16 16:59
2011-09-16 17:00
2011-09-16 17:18
2012-02-09 10:36