杭电ACM1013

2018-06-18 03:51:26来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

Digital Roots
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 74529    Accepted Submission(s): 23232

Problem Description
The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two or more digits, those digits are summed and the process is repeated. This is continued as long as necessary to obtain a single digit.

For example, consider the positive integer 24. Adding the 2 and the 4 yields a value of 6. Since 6 is a single digit, 6 is the digital root of 24. Now consider the positive integer 39. Adding the 3 and the 9 yields 12. Since 12 is not a single digit, the process must be repeated. Adding the 1 and the 2 yeilds 3, a single digit and also the digital root of 39.

Input
The input file will contain a list of positive integers, one per line. The end of the input will be indicated by an integer value of zero.

Output
For each integer in the input, output its digital root on a separate line of the output.

Sample Input
24
39
0

Sample Output
6
3

 

 1 #include"stdio.h"
 2 #include"math.h"
 3 
 4 int main()    /*language C edition*/
 5 {
 6     int n,sum,i;
 7     while(scanf("%d",&n),sum=0,n!=0)
 8     {
 9 loop:           for(i=1;i<=n;i++)
10             if(pow(10,i)>n)
11                 break;
12         for(;i>0;i--)
13         {
14                 sum=sum+n/int(pow(10,i-1));
15             n=n-n/int(pow(10,i-1))*int(pow(10,i-1));
16         }
17         if(sum<=9)
18             printf("%d\n",sum);
19         else
20         {
21             n=sum;
22             sum=0;
23             goto loop;
24         }
25     }
26     return(0);
27 }
solution

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:C语言 统计一篇英文短文中单词的个数

下一篇:STM32F4使用FPU+DSP库进行FFT运算的测试过程一