码迷,mamicode.com
首页 > 其他好文 > 详细

HrbustOJ 1937 进制转换

时间:2018-09-24 11:14:56      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:std   max   return   char*   turn   const   bcd   utc   cst   

水题。。。。。

#include <cstdio>
#include <cstring>
#define MAX 1005
const char* alpha = "ABCDEF";
int main(){
    int n,r;
    while(~scanf("%d%d",&n,&r)){
        int k = 0;
        if(n==0) { printf("0\n"); continue; }
        if(n < 0) { n = -n; putchar(‘-‘);}
        int res[MAX] = {0};
        while(n){ res[k++] = n % r; n /= r; }
        for(int i = k - 1;i >= 0;i --) 
            res[i]<10?printf("%d",res[i]):printf("%c",alpha[res[i]-10]);
        printf("\n");
    }
    return 0;
}

HrbustOJ 1937 进制转换

标签:std   max   return   char*   turn   const   bcd   utc   cst   

原文地址:https://www.cnblogs.com/1Kasshole/p/9694783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!