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

数字基root

时间:2014-12-31 14:38:27      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:华为入职练习 华为oj

<pre name="code" class="cpp">#include <stdio.h>
#include <stdlib.h>

int main()
{
    int n=0;

    while ( EOF != scanf("%d", &n) )
    {
        
        int temp = n;
        int sum = n;
       do 
       {
           temp = sum ;
           sum =0;
           while (0 != temp)
           {
               sum += temp % 10;
               temp /= 10;
           }
       } while (sum >= 10);
        printf("%d\n", sum);

    }

    return 0;
}


数字基root

标签:华为入职练习 华为oj

原文地址:http://blog.csdn.net/xiaohanstu/article/details/42293909

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