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

整数与IP地址间的转换

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

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            String ip = in.nextLine();
           
            if (ip.contains(".")) {
    
                String[] ipnum = ip.split("\\.");
                long res = 0;
                for (int i = 0; i < ipnum.length; i++) {
                    int tempNum = Integer.parseInt(ipnum[i]);
                    res += tempNum * Math.pow(2, (ipnum.length - i - 1) * 8);
                }
                System.out.println(res);

            } else {
   
                int[] resNum = new int[4];
                long aimNum = Long.parseLong(ip);
                for (int i = 0; i < 4; i++) {
                    resNum[i] = (int) (aimNum / Math.pow(2, 8 * (3 - i)));
                    aimNum =  (long) (aimNum % Math.pow(2, 8 * (3 - i)));
                }
                String resStr = "";
                for (int i = 0; i < 4; i++) {
                    resStr += resNum[i];
                    if (i != 3) {
                        resStr += ".";
                    }
                }

                System.out.println(resStr);
        
            }

        }
    }
}

全部评论

相关推荐

11-13 14:37
门头沟学院 Java
程序员牛肉:是的,我觉得你最先需要的是多接触计算机圈子。我感觉你这个写的太幼稚了,根本没换位思考面试官。 你对实习的描述还是我写了前后端,我写了Restful接口,我用了EChatrs。你这让面试官怎么问你?问你什么是前后端?问你什么是Restful?讲真的兄弟,你这个简历在面试官眼里就是啥也不懂的好学生。所以一定要尽快加入一个圈子跟大家多聊聊,看看正儿八经的简历是怎么写的。 可以看一下我首页的简历怎么写那篇文章来学一下,你这里面的坑点我那篇文章里面都有讲过。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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