-
Notifications
You must be signed in to change notification settings - Fork 2
/
sifferprodukt.cpp
62 lines (55 loc) · 882 Bytes
/
sifferprodukt.cpp
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
58
59
60
61
62
#define _USE_MATH_DEFINES
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <iomanip>
#include <vector>
#include <string>
#include <algorithm>
#include <unordered_set>
#include <unordered_map>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <stack>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
ll process(ll input)
{
if(input < 10)
{
return input;
}
else
{
vector<ll> vals;
while(input != 0)
{
ll next = input % 10;
input /= 10;
if(next != 0)
{
vals.push_back(next);
}
}
ll total = vals[0];
for(ll i = 1; i < vals.size(); i++)
{
total *= vals[i];
}
return process(total);
}
}
int main()
{
ll i, j, k;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
ll input;
cin >> input;
cout << process(input) << "\n";
return 0;
}