-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtrailing_zeros.cpp
54 lines (49 loc) · 953 Bytes
/
trailing_zeros.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
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
//User function Template for C++
class Solution
{
public:
int factorial(int n){
int f = 1;
while(n > 1){
cout << f << endl;
f = f*n;
n -= 1;
}
return f;
}
int trailingZeroes(int N)
{
int f = factorial(N);
cout << "factorial = " << f << endl;
int trail = 0;
while(f){
if(f%10 == 0){
trail += 1;
f = int(f / 10);
}
else{
return trail;
break;
}
}
return 0;
}
};
// { Driver Code Starts.
int main()
{
int t;
cin >> t;
while (t--)
{
int N;
cin >> N;
Solution ob;
int ans = ob.trailingZeroes(N);
cout<<ans<<endl;
}
return 0;
} // } Drive