zoukankan      html  css  js  c++  java
  • 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
    ",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!='
    ')
    10             s+=c-'0';
    11         if(!s)return 0;
    12         else if(s%9==0)puts("9");
    13         else printf("%d
    ",s%9);
    14     }
    15     return 0;
    16 }
  • 相关阅读:
    三种常见的编码:ASCII码、UTF-8编码、Unicode编码等字符占领的字节数
    快学Scala习题解答—第十章 特质
    [LeedCode OJ]#63 Unique Paths II
    收集互联网博客
    Android 内存监测工具 DDMS --> Heap(转)
    (转载)测试工具monkey
    (转载)Git使用教程
    时间戳转换为时间字符串
    二维码相关知识点
    教你跳转到系统指定页面
  • 原文地址:https://www.cnblogs.com/2119662736lzj/p/6079674.html
Copyright © 2011-2022 走看看