The Digital Root
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
解题思路:
合九法:该数字的数字根等于该数字 mod 9所得的余数相加;
注意:
要用字符来处理很大的数据
#include <stdio.h>
int main()
{
char a;
int root=0;
while(a=getchar())
{
if(a==\'\\n\')
{
if(root==0) break;
else
{
printf(\"%d\\n\",root%9?root%9:9);
root=0;
}
}
else if(a>=\'0\'&&a<=\'9\')
{
root+=a-\'0\';
}
}
}
继续阅读与本文标签相同的文章
redis反序列化异常:org.springframework.data.redis.serializer.SerializationException: Cannot deserialize....
一文读懂百度PaddlePaddle EDL技术
-
全球重磅数据周来袭,这些大事将影响本周市场
2026-05-18栏目: 教程
-
阿里云Hi拼团优惠活动全新升级,活动变化亮点总结
2026-05-18栏目: 教程
-
CNC加工中心G41/G42指令是什么意思?怎么使用?
2026-05-18栏目: 教程
-
百度:公立机构官网保护计划已引入超10万家公立机构官网
2026-05-18栏目: 教程
-
如何在 Apache Flink 中使用 Python API?
2026-05-18栏目: 教程
