ACM1877_又一版A+B

、这道题与2031极为相似。ACM1877_又一版A+B_第1张图片

#include
using namespace std;
void fun(int n,int r)
{

    char st[17]="0123456789ABCDEF";
    if(n/r==0) cout<<st[n];
    else {
            fun(n/r,r);
            cout<r];
            
         }
                            
}
int main()
{
    int a,b,r;
    while(cin>>r>>a>>b)
    {
        fun(a+b,r);
        cout<<endl;
    }
}

 

转载于:https://www.cnblogs.com/orangebook/p/3186265.html

你可能感兴趣的:(ACM1877_又一版A+B)