数组元素查找(查找指定元素第一次在数组中出现的…

2019-08-16 10:27:57来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

数组元素查找(查找指定元素第一次在数组中出现的索引)

数组元素查找(查找指定元素第一次在数组中出现的索引):

class Hello2 {
    public static void main(String[] args) {
        int[] arr = {11,12,13,14,15};
        int index = where(arr,12);
        System.out.println(index);
    }
    public static int where(int[] arr,int a) {
        for (int i = 0;i < arr.length ;i++ )
        {
            if (arr[i] == a)
            {
                return i;
            }
        }
        return -1;
    }


}

结果:

 


原文链接:https://www.cnblogs.com/Wangzui1127/p/11191881.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Lucene

下一篇:微信测试号接口配置失败java解决方法