标签:scan while 分享 图片 http 整数 height ima com
#include <stdio.h>
int main() {
int t,s,n,m;
scanf("%d",&s);
while(s--)
{
scanf("%d %d",&n,&m);
t=0;
for(;n>0;)
{
n=n/m;
t+=n;
}
printf("%d\n",t);
}
}
标签:scan while 分享 图片 http 整数 height ima com
原文地址:https://www.cnblogs.com/Tristan-Adams/p/9066096.html