题解 | #整数与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);
        
            }

        }
    }
}

全部评论

相关推荐

程序员花海:实习和校招简历正确格式应该是教育背景+实习+项目经历+个人评价 其中项目经历注意要体现业务 实习经历里面的业务更是要自圆其说 简历模板尽可能保持干净整洁 不要太花哨的
点赞 评论 收藏
分享
12-14 11:43
黑龙江大学 Java
用微笑面对困难:确实比较烂,可以这么修改:加上大学的qs排名,然后大学简介要写一些,然后硕士大学加大加粗,科研经历第一句话都写上在复旦大学时,主要负责xxxx,简历左上角把学校logo写上,建议用复旦大学的简历模板
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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