Blame view

P96965_en/S003-AC.cc 385 Bytes
Imanol-Mikel Barba Sabariego authored
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
#include <iostream>

using namespace std;

int sum_of_digits(int x)
{
	if(!(x/10))
        {
                return x;
        }
	return (x - (x/10)*10) + sum_of_digits(x/10);
}

int reduction_of_digits(int x)
{
	if(!(x/10))
	{
		return x;
	}
	return reduction_of_digits(sum_of_digits(x));
}

int main()
{
/*
	int a;
	cin >> a;
	cout << reduction_of_digits(a) << endl;
	return 0;
*/
}