首页 > 用户发贴区 > 编程问题提问区 > 求助:这题的答案如何得到的。。
2008
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,请教高手是如何算出来。谢谢。


求助:这题的答案如何得到的。。》有 1 条评论

  1. baly_bao 说:

    The function  f(long x) works like:

    f(12);/* output 1 */

    printf(“%d”,1234%100/10);/* output 3 */

    printf(“%d”,123456%100/10);/* output 5 */

    Well, I hope it’s helpful.

    Please consider it carefully.

留下一个回复