题解 | #进制转换#

进制转换

https://www.nowcoder.com/practice/ac61207721a34b74b06597fe6eb67c52

#include <algorithm>
#include <asm-generic/errno.h>
#include <iostream>
#include <vector>
#include <string>
using namespace std;

int main() {
    int a, b;
    string mod = "0123456789ABCDEF";
    bool flag = false;
    while (cin >> a >> b) { // 注意 while 处理多个 case
        string s;
        if(a < 0){
            flag = true;
            a = -a;
        }
        if (a == 0) {
            cout << "0" << endl;
            continue;
        } else {
            while (a) {
                s += mod[a % b];
                a = a / b;
            }
            reverse(s.begin(), s.end());
        }
        if(flag)
            cout << "-" << s.c_str() << endl;
        else
            cout << s.c_str() << endl;
    }
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务