南阳oj 阶乘因式分解
Posted huanya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了南阳oj 阶乘因式分解相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main ()
{
int t;
cin>>t;
while(t--)
{
int n,m;
int count=0;
cin>>n>>m;
while(n/m!=0)
{
count=count+n/m;
int tmp;
n=n/m;
}
cout<<count<<endl;
}
return 0;
}
还记得之前第一次做这道题的时候是学长讲课
现在已经明白了原理和技巧,开心ing
以上是关于南阳oj 阶乘因式分解的主要内容,如果未能解决你的问题,请参考以下文章