首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

HDU1013 Digital Roots求解解决思路

2013-01-28 
HDU1013 Digital Roots求解题目如下:Problem DescriptionThe digital root of a positive integer is foun

HDU1013 Digital Roots求解
题目如下:
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


3


我的代码如下,交到OJ上去总是wrong answer,请问各路大神这是为什么啊?
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
    char a[1000];
    int n,i,length,t,b[4];
    while(cin.getline(a,1000))
    {
        if(a[0]=='0')break;
        length=strlen(a);
        t=a[0]-48;
        for(i=1;i<length;i++)
        {
            t+=a[i]-48;
        }
        while(t>9)
        {
            for(i=0;i<4;i++)
            {
                b[i]=t%10;
                t/=10;
            }
            for(i=0;i<4;i++)
            {
                t+=b[i];
            }
        }
        cout<<t<<endl;


    }
    return 0;
}

[解决办法]
你得先确认不是因为数组开1000开太小

热点排行