C语言题,求程序(C++也行) 1、喝汽水(drink) 【问题描述】 John特别喜欢喝可乐,经
答案:1 悬赏:30 手机版
解决时间 2021-12-03 10:43
- 提问者网友:我一贱你就笑
- 2021-12-02 16:10
C语言题,求程序(C++也行) 1、喝汽水(drink) 【问题描述】 John特别喜欢喝可乐,经
最佳答案
- 五星知识达人网友:平生事
- 2021-12-02 17:19
#include
int main()
{
int t,n, k, total;
scanf("%d",&t);
while (t--)
{
scanf("%d %d", &n, &k);
total = 0;
int count=n;
while (count >= k)
{
total += count/k;
count/=k;
}
printf("%d\n", total+n);
}
return 0;
}追答
int main()
{
int t,n, k, total;
scanf("%d",&t);
while (t--)
{
scanf("%d %d", &n, &k);
total = 0;
int count=n;
while (count >= k)
{
total += count/k;
count/=k;
}
printf("%d\n", total+n);
}
return 0;
}追答
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯