标签:开心 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
标签:开心 cout out pac 因式分解 str int mes 阶乘因式分解
原文地址:https://www.cnblogs.com/huanya/p/9351581.html