溫馨提示×

java 數(shù)組中是否存在某個值

小億
94
2024-01-10 15:54:45
欄目: 編程語言

在Java中,可以使用循環(huán)遍歷數(shù)組來判斷數(shù)組中是否存在某個值。下面是一個示例代碼:

public class Main {
    public static void main(String[] args) {
        int[] array = {1, 2, 3, 4, 5};
        int target = 3;
        boolean found = false;
        
        for (int i = 0; i < array.length; i++) {
            if (array[i] == target) {
                found = true;
                break;
            }
        }
        
        if (found) {
            System.out.println("數(shù)組中存在目標值" + target);
        } else {
            System.out.println("數(shù)組中不存在目標值" + target);
        }
    }
}

輸出:

數(shù)組中存在目標值3

在上面的代碼中,我們使用了一個布爾變量found來標記是否找到了目標值。在遍歷數(shù)組的過程中,如果找到了目標值,將found設(shè)置為true并跳出循環(huán)。最后根據(jù)found的值來判斷是否存在目標值。

0