gpt4 book ai didi

java - 返回整数数组中特定值的索引

转载 作者:行者123 更新时间:2023-11-30 06:45:21 24 4
gpt4 key购买 nike

Write a method named indexOf that returns the index of a particular value in an array of integers. The method should return the index of the first occurrence of the target value in the array. If the value is not in the array, it should return -1. For example, if an array called list stores the following values:

int[] list = {42, 7, -9, 14, 8, 39, 42, 8, 19, 0};

Then the call indexOf(list, 8) should return 4 because the index of the first occurrence of value 8 in the array is at index 4. The call indexOf(list, 2) should return -1 because value 2 is not in the array.

当答案需要为 -1 时,我的尝试不起作用。

 public int indexOf(int[] arr,int value) {
int k=0;
for(int i=0;i<arr.length;i++){
if(arr[i]==value){
k=i;
break;
}
}
return k;
}

最佳答案

k初始化为-1而不是0

关于java - 返回整数数组中特定值的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49107663/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com