杭电ACM1013
2018-06-18 03:51:26来源:未知 阅读 ()
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 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 『ACM C++』HDU杭电OJ | 1416 - Gizilch (DFS - 深度优先搜 2019-02-28
- 『ACM C++』HDU杭电OJ | 1425 - sort (排序函数的特殊应用 2019-02-25
- 『ACM C++』HDU杭电OJ | 1415 - Jugs (灌水定理引申) 2019-02-25
- 杭电OJ2004——成绩转换 2018-06-18
- 杭电2002——计算球体积 2018-06-18
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash