PAT1022打卡-0924
2020-09-24 本文已影响0人
可爱的甜甜猪
```c++#include <iostream>
#include <cmath>
using namespace std;
int main()
{
long long int A,B;
long long int C;
int D;
cin>>A>>B;
C=A+B;
cin>>D;
int n=0;
while(C>=D)
{
C=C/D;
n++;
}
//cout<<n+1<<endl;
C=A+B;
int cou;
while(n>=0)
{
cou=C/pow(D,n);
C=C-cou*pow(D,n);
n--;
cout<<cou;
}
return 0;
}