首页 > 代码库 > GDUFE ACM-1005
GDUFE ACM-1005
Digital Roots
Time Limit: 2000/1000ms (Java/Others)
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(the length of each integer will not exceed 1000), 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思路挺简单的
附上AC代码:
1 #include<stdio.h> 2 #include<string.h> 3 int jys(int num) 4 { 5 int sum=0; 6 while(num>=10) 7 { 8 sum+=num%10; 9 num/=10; 10 } 11 sum+=num; 12 return sum; 13 } 14 int main() 15 { 16 char s[1010]; 17 while(gets(s)&&s[0]!=‘0‘) 18 { 19 int i,x=0; 20 for(i=0;i<strlen(s);i++) 21 { 22 x+=s[i]-‘0‘; 23 } 24 while(x>=10) 25 { 26 x=jys(x); 27 } 28 printf("%d\n",x); 29 } 30 return 0; 31 }
在网上发现了一种更简单的代码(九余数定理):
1 #include<stdio.h> 2 int main() 3 { 4 int s; 5 char c; 6 while(1) 7 { 8 s=0; 9 while(scanf("%c",&c)&&c!=‘\n‘) 10 s+=c-‘0‘; 11 if(!s)return 0; 12 else if(s%9==0)puts("9"); 13 else printf("%d\n",s%9); 14 } 15 return 0; 16 }
GDUFE ACM-1005
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。