可以使用循環遍歷數組,逐個比較數組中的元素是否與目標元素相等,如果有相等的元素,則認為數組包含該元素。
以下是一個示例代碼:
public class Main {
public static void main(String[] args) {
int[] array = {1, 2, 3, 4, 5};
int target = 3;
boolean contains = false;
for (int i = 0; i < array.length; i++) {
if (array[i] == target) {
contains = true;
break;
}
}
if (contains) {
System.out.println("數組包含目標元素");
} else {
System.out.println("數組不包含目標元素");
}
}
}
這里定義了一個名為contains
的布爾變量,初始值為false
。在循環遍歷數組時,如果發現有元素與目標元素相等,則將contains
變量設為true
,并使用break
語句跳出循環。最后根據contains
變量的值輸出判斷結果。