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

整数与IP地址间的转换

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

import java.util.*;

public class Main {
    public static void main(String[] args) {


        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        String a = sc.nextLine();

        // IP处理
        String[] arr = s.split("\\.");
        long result1 = 0;
        for (int i = 0; i < arr.length; i++) {
            result1 = result1 * 256 + Integer.parseInt(arr[i]);
        }
        System.out.println(result1);

        // 整数处理
        long ipv4 = Long.parseLong(a);
        String result2 = "";
        for (int i = 0; i < 4; i++) {
            result2 = ipv4 % 256 + "." + result2;
            ipv4 /= 256;
        }
        result2 = result2.substring(0, result2.length() - 1);
        System.out.println(result2);
    }
}

全部评论

相关推荐

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