1 条题解

  • 0
    @ 2023-6-4 11:22:14

    这道题很简单按题目要求就行了

    ~~https://oi-wiki.org/math/base/~~

    code:

    #include<cstdio>
    
    int n,a[1005],tot,base;
    
    int main(){
        scanf("%d%d",&n,&base);
        while(n){
            a[++tot]=n%base;
            n/=base;
        }
        for(int i=tot;i>=1;i--){
            printf("%c",a[i]>10?a[i]-10+'A':a[i]+'0');
        }
        return 0;
    }
    
    • 1

    信息

    ID
    1091
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    递交数
    20
    已通过
    8
    上传者