题解 | #整数与IP地址间的转换#

整数与IP地址间的转换

https://www.nowcoder.com/practice/66ca0e28f90c42a196afd78cc9c496ea

#include <cstdio>
#include <iostream>
#include <ostream>
#include <string>
#include <vector>
#include <cmath>
using namespace std;

unsigned int toDecimal(vector<int>& ipAddress){
    unsigned int res = 0;
    for(int i= 0; i < ipAddress.size(); ++i){
        res += ipAddress[i] * pow(2, 24-8*i);
    }
    return res;
}

string toIPAddress(unsigned int decimal){
    vector<unsigned int> tmp(4, 0);
    for(int i = 3; i >= 0; --i){
        tmp[i] = decimal & 0xff;
        decimal >>= 8;
    }
    string res;
    for(unsigned int i : tmp){
        res += to_string(i) + '.';
    }
    res.erase(res.size()-1);
    return res;
}

int main(int argc, char* argv[]){
    vector<int> ipAddress(4, 0);
    for(int i = 0; i < 4; ++i){
        string str;
        if(i != 3){
            getline(cin, str, '.');
        }
        else{
            getline(cin, str);
        }
        ipAddress[i] = stoi(str);
    }
    unsigned int decimal;
    cin >> decimal;

    cout << toDecimal(ipAddress) << endl;
    cout << toIPAddress(decimal) << endl;

    return 0;
}
全部评论

相关推荐

点赞 评论 收藏
分享
AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务