Background
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.
Example
Input
24 39 0Output
6 3
#include<iostream>
#include<string>
using namespace std;
//////用来得到各个位数的和
int process(int a){
int sum=0;
while(a!=0){
sum+=a%10;
a/=10;
}
return sum;
}
int main(){
int root=0; //a是输入的数,root 是相应的数根
string a;
while(cin>>a){
root=0;
if(a.length()==1&&a[0]=='0') break;
//得到第一次计算的各位数和
for(int i=0;i<a.length();i++){
root+=a[i]-'0';
}
//如果处理后不是一位的则继续操作
while(root/10!=0){
root=process(root);
}
cout<<root<<endl;
}
return 0;
}
本文介绍了一种名为“数字树根”的数学概念及其计算方法。数字树根是指通过反复累加正整数各数位直至结果为一位数的过程。文章详细解释了如何实现这一算法,并提供了一个示例程序。
206

被折叠的 条评论
为什么被折叠?



