-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathRecursive Digit Sum.cpp
More file actions
57 lines (47 loc) · 825 Bytes
/
Recursive Digit Sum.cpp
File metadata and controls
57 lines (47 loc) · 825 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <iostream>
#include <string>
using namespace std;
string n;
int k, res;
int toInt() {
int tmp = 0;
for(int i = 0; i < n.length(); ++i)
tmp += (n[i] - '0');
return tmp;
}
void stringSum() {
int tmp = 0;
for(int i = 0; i < n.length(); ++i)
tmp += (n[i] - '0');
n = "";
while(tmp != 0) {
n += ((tmp % 10) + '0');
tmp /= 10;
}
}
void stringRec() {
stringSum();
if(n.length() == 1) return;
stringRec();
}
void intSum() {
int tmp = 0;
while(res != 0) {
tmp += (res % 10);
res /= 10;
}
res = tmp;
}
void intRec() {
intSum();
if(res < 10) return;
intRec();
}
int main() {
cin >> n >> k;
stringRec();
res = toInt() * k;
intRec();
cout << res << endl;
return 0;
}