10125723 的 站内主页
2008
01-22
01-22
#include<stdio.h>
void f(long x)
{if(x<100) printf("%d",x/10);
else
{f(x/100);
printf("%d",x%100/10);}
}
main()
{f(123456);}
答案是135,请教高手是如何算出来。谢谢。....
Read More >