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

整数与IP地址间的转换

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

while True:
    try:
        s = input().split('.')
        num = int(input())
        res = ''
        for n in s:
            n = int(n)
            b = bin(n)
            res += str(b[2:].zfill(8))
            # res += str(b[2:].rjust(8, "0"))
        print(int(res, 2))

        b_num = bin(num)
        b_num_str = str(b_num[2:]).rjust(32, '0')
        tmp = ''
        res2 = []
        g = len(b_num_str) // 8
        for i in range(g):
            tmp = b_num_str[8 * i: 8 * i + 8]
            tmp = int(tmp, 2)
            res2.append(str(tmp))
        print('.'.join(res2))
    except:
        break

全部评论

相关推荐

一个非常好用的遍历方法
AomaYple:不是指针,是引用
点赞 评论 收藏
分享
10-17 16:07
门头沟学院 Java
牛牛大你18号:在汇报,突然弹出来,,领导以为我在准备跳槽,刚从领导办公室谈心出来
点赞 评论 收藏
分享
拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务