• 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 }
  • 相关阅读:
    添加语句<tx:annotation-driven transaction-manager="txManager"/>报错
    ssh学习(1)
    C.Sum 2017 ACM-ICPC 亚洲区(西安赛区)网络赛
    Problem 1004-2017 ACM/ICPC Asia Regional Shenyang Online
    Problem 1002-2017 ACM/ICPC Asia Regional Shenyang Online
    2017 ACM-ICPC 亚洲区(乌鲁木齐赛区)网络赛- A. Banana
    HDU 1052 Tian Ji -- The Horse Racing(贪心)
    HDU 1236 排名
    HDU 2550 百步穿杨
    HDU 1084 What Is Your Grade?(排序)
  • 原文地址:https://www.cnblogs.com/2119662736lzj/p/6079674.html
Copyright © 2020-2023  润新知