编写代码查找数组{3,4,5,6,7,2,,}
时间: 2024-01-10 12:04:58 浏览: 69
查找数组中的数
这个数组中缺少一个数字,无法确定完整的数组。如果这个数组是{3, 4, 5, 6, 7, 2},你想在其中查找某个元素的话,可以使用以下代码实现:
```java
public class Main {
public static void main(String[] args) {
int[] arr = {3, 4, 5, 6, 7, 2};
int target = 5;
int index = -1;
for (int i = 0; i < arr.length; i++) {
if (arr[i] == target) {
index = i;
break;
}
}
if (index != -1) {
System.out.println("目标元素 " + target + " 的下标是 " + index);
} else {
System.out.println("目标元素 " + target + " 不在数组中");
}
}
}
```
这个程序会查找数组中是否存在目标元素,如果存在,输出目标元素的下标;如果不存在,输出不在数组中的提示信息。
阅读全文