码迷,mamicode.com
首页 > 其他好文 > 详细

南阳oj 阶乘因式分解

时间:2018-07-22 22:23:53      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:开心   cout   out   pac   因式分解   str   int   mes   阶乘因式分解   

#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 阶乘因式分解

标签:开心   cout   out   pac   因式分解   str   int   mes   阶乘因式分解   

原文地址:https://www.cnblogs.com/huanya/p/9351581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!