| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
标程!C++的!大家可以参考一下!#include <stdio.h>
int main()
{
unsigned int n, k, sum;
while (EOF != scanf("%d%d", &n, &k))
{
sum = n;
while (n / k)
{
sum += n / k;
n = n / k + n % k;
}
printf("%d\n", sum);
}
}
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator