• HDU1013 Digital Roots


    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

    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
     
    题意:给一串数字,使每个位上的数字相加,如果结果大于等于10 ,循环这个过程,知道结果小于十,输出。
          实际上是个大数问题,给出的数字可能已超过了LONG LONG 范围,可以用字符串处理。
     
     1 #include<cstring>
     2 #include<cstdio>
     3 #include<iostream>
     4 #include<cstdlib>
     5 
     6 using namespace std;
     7 
     8 int main()
     9 {
    10     char str[20000];
    11     while(cin>>str&&str[0]!='0')
    12     {
    13         int sum;
    14         do{
    15                 sum=0;
    16             for(int i=0;i<strlen(str);i++)
    17                 sum+=(str[i]-'0');
    18             itoa(sum,str,10);  //将数字转换为字符串 itoa(数字,字符串首地址,进制);
    19         }while(sum>=10);
    20         cout<<sum<<endl;
    21     }
    22 }
  • 相关阅读:
    Oracle 执行计划(Explain Plan) 说明
    RMAN backup recovery area 命令
    Linux 终端访问 FTP 及 上传下载 文件
    Putty 工具 保存配置的 小技巧
    Oracle 补丁体系 及 opatch 工具 介绍
    闪回恢复区 (Flash Recovery Area)
    Oracle 10g OCP 043 题库 141185题 共185题
    Oracle 补丁体系 及 opatch 工具 介绍
    ORA16401 archivelog rejected by RFS 解决方法
    多表连接的三种方式详解 HASH JOIN MERGE JOIN NESTED LOOP
  • 原文地址:https://www.cnblogs.com/wsaaaaa/p/4287459.html
Copyright © 2020-2023  润新知