码迷,mamicode.com
首页 > 编程语言 > 详细

微软的一道网红Java面试题

时间:2019-07-30 00:26:22      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:str   inf   temp   system   ima   com   src   lock   遍历   

技术图片

题目:

给定一个int类型数组:int[] array = new int[]{12, 2, 3, 3, 34, 56, 77, 432}

让该数组的每个位置上的值去除以首位置的元素,得到的结果,作为该位置上的新值,

遍历新的数组

典型错误答案:

    public static void main(String[] args) {
        int[] array = new int[]{12, 2, 3, 3, 34, 56, 77, 432};

        for (int i = 0; i < array.length; i++) {
            array[i] = array[i] / array[0];
            // 注意这里,遍历第一次后,首位置元素的值变成了1,不再是12
        }

        for (int i = 0; i < array.length; i++) {
            System.out.println(array[i]);
        }
    }

正确答案一:

    public static void main(String[] args) {
        int[] array = new int[]{12, 2, 3, 3, 34, 56, 77, 432};

        int temp = array[0];
        for (int i = 0; i < array.length; i++) {
            array[i] = array[i] / temp;
        }

        for (int i = 0; i < array.length; i++) {
            System.out.println(array[i]);
        }
    }

正确答案二:

    public static void main(String[] args) {
        int[] array = new int[]{12, 2, 3, 3, 34, 56, 77, 432};

        for (int i = array.length - 1; i >= 0; i--) {
            array[i] = array[i] / array[0];
        }

        for (int i = 0; i < array.length; i++) {
            System.out.println(array[i]);
        }
    }

技术图片

微软的一道网红Java面试题

标签:str   inf   temp   system   ima   com   src   lock   遍历   

原文地址:https://www.cnblogs.com/sum-41/p/11267276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!