POJ 1519 Digital Roots

题意:求数根。

 

解法:一个数的数根就是mod9的值,0换成9,只是没想到给的是一个大数……只好先把每位都加起来再mod9……

 

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string>
#include<string.h>
#include<math.h>
#include<limits.h>
#include<time.h>
#include<stdlib.h>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<vector>
#define LL long long
 
using namespace std;
 
int main()
{
    string s;
    while(cin >> s)
    {
        if(s == "0") break;
        int ans = 0;
        for(int i = 0; i < s.size(); i++)
            ans += s[i] - '0';
        ans %= 9;
        if(!ans) ans = 9;
        cout << ans << endl;
    }
    return 0;
}

  

posted @   露儿大人  阅读(160)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示