博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1013 Digital Roots(字符串,大数,九余数定理)
阅读量:6985 次
发布时间:2019-06-27

本文共 2534 字,大约阅读时间需要 8 分钟。

Digital Roots

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 79180    Accepted Submission(s): 24760

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 
2 #include
3 int main() 4 { 5 char a[1500]; 6 int sum; 7 while(scanf("%s",&a)!=EOF) 8 { 9 if(strlen(a)==1&&a[0]=='0')10 break;11 sum=0;12 for(int i=0;i
=10)16 sum=sum/10+sum%10;17 }18 printf("%d\n",sum);19 }20 return 0;21 }

 

1 /*因为输入的数字可能很长,而一个数的digital root和该数每一位的和的digital root相等,所以可以直接算出所输入的数字的和(不会超过范围),然后根据常规方法求digital root。 2 */ 3 #include 
4 #include
5 6 int root(int x) 7 { 8 int r=0; 9 while (x)10 {11 r+=x%10;12 x/=10;13 }14 if (r<10)15 return r;16 else17 return root(r);18 }19 20 int main()21 {22 char c;23 int r=0;24 while (c=getchar(),1)25 {26 if (c=='\n')27 {28 if (r==0)29 break;30 printf("%d\n",root(r));31 r=0;32 }33 else34 {35 r+=c-48;36 }37 }38 }
1 //9余数定理 !! 2 #include
3 #include
4 char a[10010]; 5 int main() 6 { 7 int n; 8 while(~scanf("%s",a),strcmp(a,"0")) 9 {10 int sum=0;11 int len=strlen(a);12 for(int i=0;i

 

转载于:https://www.cnblogs.com/Roni-i/p/7190742.html

你可能感兴趣的文章
在C#代码中设置Binding
查看>>
Silverlight 5 Beta新特性[6]低延迟对WAV格式声音效果支持
查看>>
Android使用AsyncTask实现可以断点续传的DownloadManager功能
查看>>
redhat or centos rpm包搭建apache
查看>>
基于文档对象模型的软件设计
查看>>
在esx server VI里导入其它虚拟机
查看>>
ORACLE TRACE 10046事件常见的几种方法
查看>>
View State的知识
查看>>
Linux下常用的压缩解压命令[收藏]
查看>>
路演使用 VHD Native Boot 打造多系统应用环境
查看>>
7.Azure文件(文件共享)-NAS(上)
查看>>
如何用js显示时钟?
查看>>
spring使用中报Cannot proxy target class because CGLIB2 is not available错
查看>>
RedHat EL5 安装Oracle 10g RAC之--Oracle软件安装
查看>>
Swift中获取系统语言
查看>>
bigswitch公司
查看>>
上接稳扎稳打Silverlight(19) - 2.0通信之调用REST服务,处理JSON格式, XML格式, RSS/ATOM格式的数据...
查看>>
ISA2006标准版常见问题(二)
查看>>
免费的编程中文书籍索引
查看>>
Mybatis在idea中错误:Invalid bound statement (not found)
查看>>