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

整数与IP地址间的转换

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

#include <iostream>
using namespace std;

int main() {
    string str;
    long a, b, c, d;
    scanf("%d.%d.%d.%d", &a, &b, &c, &d);
    cout << ((a << 24) + (b << 16) + (c << 8) + d) << endl;
    long num;
    cin >> num;
    a = num >> 24;
    num -= a << 24;
    b =  num >> 16;
    num -= b<< 16;
    c = num >> 8;
    num -= c << 8;
    d = num;
    cout << a << "." << b << "." << c << "." << d << endl;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务