首页 > 代码库 > Digital Roots
Digital Roots
Digital Roots
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目描述
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.
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.
输入
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.
输出
For each integer in the input, output its digital root on a separate line of the output.
示例输入
24390
示例输出
63
提示
请注意,输入数据长度不超过20位数字。
来源
Greater New York 2000
面向对数据结构和算法不是太懂的同学
面向对数据结构和算法不是太懂的同学
示例程序
#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int i,len,j; int num[25],a=0; char st[25]; while(scanf("%s",st),st[0]!=‘0‘) { if(st==‘0‘) break; memset(num,0,sizeof(num)); len=strlen(st); for(i=0;i<len;i++) num[i]=st[i]-‘0‘; for(j=0;j<i;j++) { a=a+num[j]; } while(a>9) { a=a/10+a%10; } printf("%d\n",a); a=0; } return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。