码迷,mamicode.com
首页 > 其他好文 > 详细

hdu acm 1007

时间:2015-01-29 15:52:59      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

  1. #include <stdio.h>
  2. int main()
  3. {
  4. freopen("read.txt", "w", stdout);
  5. for(int j=0; j<=1000000000; j+=100)
  6. {
  7. int tp = j;
  8. int seat = 1;
  9. int all = 0;
  10. while(tp)
  11. {
  12. all += tp%10 * seat;
  13. seat *= 2;
  14. tp /=10;
  15. }
  16. printf("%d,", all);
  17. }
  18. return 0;
  19. }





附件列表

     

    hdu acm 1007

    标签:

    原文地址:http://www.cnblogs.com/sober-reflection/p/14543158caa050b8b49399448017bf7e.html

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!