阶乘后面0的数量
Posted NWU_ACM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阶乘后面0的数量相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h> #define _xx ios_base::sync_with_stdio(0);cin.tie(0); using namespace std; typedef long long ll; int main() { ll n; cin >> n; int k = 0, m = 5, ans = 0; while(m <= n) ans += n/m, m *= 5; cout << ans << endl; return 0; }
以上是关于阶乘后面0的数量的主要内容,如果未能解决你的问题,请参考以下文章