解题报告:hdu1013 Digital Roots
Posted pprp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解题报告:hdu1013 Digital Roots相关的知识,希望对你有一定的参考价值。
2017-09-07 22:02:01
writer:pprp
简单的水题,但是需要对最初的部分进行处理,防止溢出
/*
@theme: hdu 1013 Digital roots
@writer:pprp
@begin:21:52
@end:21:59
@error:虽然是水题,但是还是需要对最初的处理,如果过大超过了int范围,就出错了
@date:2017/9/7
*/
#include <bits/stdc++.h>
using namespace std;
int main()
{
string str;
while(cin >> str && str != "0")
{
long long n = 0;
for(int i = 0 ; i < str.length(); i++)
n += str[i] - ‘0‘;
int ans = 0;
while(n)
{
ans += n%10;
n /= 10;
if(n == 0 && ans >= 10)
{
n = ans;
ans = 0;
}
}
cout << ans << endl;
}
return 0;
}
以上是关于解题报告:hdu1013 Digital Roots的主要内容,如果未能解决你的问题,请参考以下文章