P1017 进制转换

Posted xiaoyezi-wink

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1017 进制转换相关的知识,希望对你有一定的参考价值。

P1017 进制转换

题解

短除法进制转换

当取模数为负数???

技术图片

 

 加上上面的操作就可以防止取模结果为负数啦

代码

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<string>
#include<cstring>
#include<queue>
#include<cmath>

using namespace std;
typedef long long ll;

inline int read()
{
    int ans=0;
    char last= ,ch=getchar();
    while(ch<0||ch>9) last=ch,ch=getchar();
    while(ch>=0&&ch<=9) ans=ans*10+ch-0,ch=getchar();
    if(last==-) ans=-ans;
    return ans;
}

const int maxn=1e5+10;
int tot=0,a[maxn];
int n,m,mod;

int main()
{
    n=read();mod=read();m=n;
    while(n){
        a[++tot]=n%mod;
        n/=mod;
        if(a[tot]<0) a[tot]=(a[tot]+(-mod))%(-mod),n++;
    //    printf("n=%d  a[tot]=%d
",n,a[tot]);    
    }
    printf("%d=",m);
    for(int i=tot;i>=1;i--){
        if(a[i]>9){
            printf("%c",64+a[i]-9);
        }
        else printf("%d",a[i]);
    }
    printf("(base%d)
",mod);
    return 0;
}

 

以上是关于P1017 进制转换的主要内容,如果未能解决你的问题,请参考以下文章

洛谷P1017 进制转换

洛谷 P1017 进制转换

[洛谷P1017] 进制转换

洛谷—— P1017 进制转换

题解 P1017 进制转换

洛谷 P1017 进制转换