题解 | #进制转换#

进制转换

https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6

#include <iostream>
#include <cmath>
using namespace std;

int main() {
    string str;
    int t = 0;
    while (cin >> str) { // 注意 while 处理多个 case
        int i = 0;
        int bit = 0;
        for (i = str.length() - 1; i > 1; i--) {
            if (str[i] == 'A') {
                t = t + 10 * pow(16, bit);
            } else if (str[i] == 'B') {
                t = t + 11 * pow(16, bit) ;
            } else if (str[i] == 'C') {
                t = t + 12 * pow(16, bit) ;
            } else if (str[i] == 'D') {
                t = t + 13 * pow(16, bit);
            } else if (str[i] == 'E') {
                t = t + 14 * pow(16, bit);
            } else if (str[i] == 'F') {
                t = t + 15 * pow(16, bit);
            } else {
                t = t + (str[i] - '0') * pow(16, bit);
            }
            bit = bit + 1;
        }
        cout << t << endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

点赞 评论 收藏
分享
07-09 20:50
门头沟学院 Java
码农索隆:1.教育背景和荣誉证书合二为一。 2.获奖项目理一遍,你做了什么,对你求职的岗位有什么帮助,没有就删掉。 3.技能特长和教育背景交换位置。 4.技能特长写的太差,上网上找简历参考。都不用问你别的,一个redis就能把你问住,写写你具体会redis哪些方面的知识。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务