zoukankan      html  css  js  c++  java
  • 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建表的例子
    【转】oracle 体系结构
    JMeter-Window10系统下设置环境变量
    JMeter 3.0 POST Body Data 中文乱码问题
    JMeter接口测试报错,反馈和postman不一样(二)
    JMeter参数文件的相对路径
    JMeter正则表达式提取器说明
    JMeter接口测试报错,反馈和postman不一样(一)
    协程实现多边同时交互原理
    python 多线程中子线程和主线程相互通信
  • 原文地址:https://www.cnblogs.com/wsaaaaa/p/4287459.html
Copyright © 2011-2022 走看看