中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java如何在數組中查找指定元素

小億
130
2024-05-08 17:41:56
欄目: 編程語言

在Java中,可以使用循環遍歷數組來查找指定的元素。以下是一個簡單的示例:

public class Main {
    public static void main(String[] args) {
        int[] arr = {1, 2, 3, 4, 5};
        int target = 3;
        
        boolean found = false;
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] == target) {
                found = true;
                break;
            }
        }
        
        if (found) {
            System.out.println("Element " + target + " found in the array.");
        } else {
            System.out.println("Element " + target + " not found in the array.");
        }
    }
}

這段代碼會在數組 arr 中查找元素 target,如果找到則輸出找到的信息,如果沒有找到則輸出未找到的信息。

0
新邵县| 会泽县| 拜城县| 佛冈县| 宁明县| 肃南| 德江县| 缙云县| 塘沽区| 鹤峰县| 天津市| 合肥市| 鄯善县| 安国市| 保定市| 邯郸县| 西宁市| 澜沧| 巫山县| 卢湾区| 万宁市| 修水县| 胶州市| 连州市| 龙游县| 伊吾县| 潢川县| 全椒县| 红原县| 元谋县| 互助| 靖边县| 麻江县| 漠河县| 八宿县| 乐至县| 旌德县| 景洪市| 彩票| 孟州市| 泸定县|